我知道如何使用dos2unix
将文件格式从dos更改为unix,但是如何在目录树下更改所有文件。 dos2unix
可以递归更改文件吗?
例如,我有一些文件如下:
TOPDIR
|
+-----dir1
| |
| +---file1,file2, file3
|
+-----dir2
|
+---file4,file5
如何一次更改它们,或使用一些shell脚本?
答案 0 :(得分:7)
最好做find /path -type -f -exec dos2unix '{}' \;
答案 1 :(得分:1)
find /path -name '*' -type f -exec dos2unix {} \;
答案 2 :(得分:0)
dos2unix -k `find . -type f`
find . -type f -exec dos2unix -k '{}' \;
find . -type f -print | xargs dos2unix -k
任何上述命令都可以在TOPDIR中使用