我正在寫一個bash腳本來遍歷具有給定值的文件行。如何在bash中輸入循環命令
我使用列出的可能值的命令是:
cat file.csv | cut -d';' -f2 | sort | uniq | head
當我在使用它的循環這樣它停止工作:
for i in $(cat file.csv | cut -d';' -f2 | sort | uniq | head)
do
//do something else with these lines
done
我如何使用管道命令for循環?
這是一種程度上的工作,但不排序,如果我在這個循環中使用它們,uniq也沒有(我得到的線條像平常一樣切碎,但沒有排序和分組) – xanyi