我正在解析.html
Bash 中的一些文件。我读了输入:
while read line
do
echo $line
...do something...
done < $file
现在我经历了一些真正奇怪的事情。文件中的某些行包含类似
Resolution…: 720 * 576
但是 bash 给了我这个:
Resolution…: 720 mysript.sh another_script.pl 576
Bash 将 扩展为* char
实际目录的内容。如何在不扩展的情况下逐行阅读文本。