0
我有一個包含一些行的文件。我想將每一行存儲到一個變量中,但該行必須在shell腳本中完成(perl - chomp($ Line))。從bash中的文件讀取的行中刪除換行符
含有打開文件和讀取線的功能的代碼是
p_file() {
File=$1
count=0
while read LINE
do
chomped_line=$LINE **#How to delete the linebreaks**
echo $chomped_line
done < $File
}
如何刪除換行符和字符串中的變量(chomped_line)如上
http://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-bash-variable – arkascha