1
我已經看到的文章'for' loop。它會像空間,製表符或換行符一樣發生空白。爲了得到這個問題的騎我有以下命令的額外的行:在'for'循環中用空格讀取完整行,具有多個輸入文件的選項卡
IFS=$'\n'
但是當我嘗試來解決以下細節上面的場景(我有兩個文件:「input1.txt」和'input.txt的'我的當前目錄):
bash命令:
bash script.sh 'input*'
下面是'爲' 在script.sh循環塊
for line in $(cat $1)
...
...
done;
我上執行以下錯誤:
cat: input1.txt input.txt*: No such file or directory
注:我想貓這兩個文件input1.txt and input.txt
從文件中讀取:HTTP://mywiki.wooledge .org/BashFAQ/001 –
錯誤消息不是由消息中的命令生成的。請提出更準確的問題陳述。 – rici