是否有一个 csh 脚本/命令来列出源代码树中的所有文件,这些文件的行尾在 emacs 中显示为“^M”(在 linux 下)。
谢谢!
根据我对另一个问题的回答:
fgrep -rl `echo -ne '\r'` .
find . -type f -exec grep $'\r' {} +
$'\r'
可能需要 bash 才能正常运行。
find . -type f -print | xargs grep 'cntl-M$'
其中 cntl-M 已通过首先输入 cntl-V 输入