递归批量替换文件名,文件内容

递归批量将 a 命名为 b 脚本递归 for i in `find ./` ;do NN=$(echo $i | sed 's/a/b/') ;mv "$i" "$NN";done sed
相关文章
相关标签/搜索