我们有一个名为LineFeed.sh
的shell脚本文件,它具有将换行符(LF
)转换为回车符+ LineFeed的功能。我们希望在Windows中通过批处理文件完成相同的操作。有可能吗?
Linux shell文件
E_WRONGARGS=65
cat OutputList|while read -r Line
do
if [ -z "$Line" ]
then
echo "Usage: `basename $0` filename-to-convert"
exit $E_WRONGARGS
fi
NEWFILENAME=$Line.unx
CR='\015' # Carriage return.
# 015 is octal ASCII code for CR.
# Lines in a DOS text file end in CR-LF.
# Lines in a UNIX text file end in LF only.
tr -d $CR < $1 > $NEWFILENAME // here its deleting CR but i need to append LF
# Delete CR's and write to new file.
done
echo "Original DOS text file is \"$1\"."
echo "Converted UNIX text file is \"$NEWFILENAME\"."
exit 0
答案 0 :(得分:13)
您可以在this Wikipedia page找到一种方式:
TYPE unix_file | FIND "" /V > dos_file
请记住,您无法将输出重定向到您正在阅读的同一文件。这几乎适用于所有系统和shell,因此需要额外的重命名。
这里的关键是type
知道如何读取LF行结尾,find
然后将它们转换成CRLF。单独type
不会对输出做任何事情(它应该是,因为有一个命令只是转储文件内容弄乱它们并不好: - ))。
答案 1 :(得分:0)
在使用type
命令的通用方法的基础上,您还可以转换所有文件(或您喜欢的任何通配符),并使用以下命令将它们转储到temp文件夹中:>
md temp
for %a in (*.*) do type "%a" | find /v "" > temp\"%a"
如果通常的想法是替换原始文件,则只需将文件移回临时位置并删除临时文件夹