dos2unix整个目录

前端之家收集整理的这篇文章主要介绍了dos2unix整个目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面列出怎么对整个目录中的文件做dos2unix操作:

$ find . -type f -exec dos2unix {} \;

其中具体命令的解释如下:

find .
= find files in the current directory

-type f
= of type f

-exec dos2unix {} \;
= and execute dos2unix on each file found

0
原文链接:https://www.f2er.com/bash/391887.html

猜你在找的Bash相关文章