Linux 用久了, 看到純文字檔案的 line ending 是用 ‘\r\n’, 就覺得很礙眼. 如果要一次改整個資料夾的純文字檔, 用 dos2unix
find . -type f -print0 | xargs -0 dos2unix
Linux