Shell-Script

從文件的行創建目錄

  • August 29, 2016

我正在cat輸入一個文件,輸出是這樣的:

Help me my friend
Temptation
Sorrow
True Love
Vanilla Sky
I was here
SOS
...

我正在嘗試創建所有這些行的目錄。

我嘗試過的是:

mkdir `cat x.txt`

但結果一團糟!例如,I was here將分為三個目錄,如Iwashere。我怎樣才能解決這個問題??

提前致謝。

逐行閱讀並使用正確的引用:

while IFS= read -r name; do mkdir -- "$name"; done <x.txt

引用自:https://unix.stackexchange.com/questions/306415