filename="makebacio.sh"
while read line
do
echo $line >> temp.sh
done < "$filename"
我正在尝试将一个文件的内容复制到另一个文件中,但是在新文件中,从开头剪掉的所有空格都会被剪掉。
我想复制与源文件完全相同的内容。
答案 0 :(得分:0)
使用空IFS
并引用打印:
filename="makebacio.sh"
while IFS= read -r line
do
echo "$line" >> temp.sh
done < "$filename"
这将保留源文件中的所有空格。