字符串的子串替换
遍历目录
字符串的子串替换
snippet.bash
${str/abc/xy/}
遍历目录
snippet.bash
file_list
=
`
ls
${my_dir}
`
for
file_i
in
${file_list}
;
do
echo
$file_i
done