remove '^M' in shell script

最近在windows上编辑一些shell脚本后上传到交换机框体上,
但这些shell脚本无法执行,每一行结尾都有'^M',同时框体上又没有dos2unix工具,
这么多脚本也不可能一行一行来修改,于是就自己写了一个脚本来把当前目录下所有文件中的'^M'去掉。
#!/bin/sh
filename='ls'

for f in ${filename};do
    if [ -f ${f} ]; then
        echo "delete '^M' and rename file to ${f}1"
        tr -d "\015" <${f}> ${f}1

        echo "Back to the original file name"
        mv ${f}1 ${f}
   fi
 done
 ll --color

你可能感兴趣的:(shell,vi)