我一直堅持這一點,似乎無法找到任何好的提示,讓這個工作。 好的,我有這個叫做「tweets」的文件,裏面有幾百行。我需要獲取每一行,因爲它是自己的變量。讀取一個文件,並提取每一行,因爲它是自己的變量[Bash]
實施例:
[email protected]:~$ cat tweets
this is line one
this is line two
this is line three
好了,所以我需要在每行被設置爲變量。謝謝!
我一直堅持這一點,似乎無法找到任何好的提示,讓這個工作。 好的,我有這個叫做「tweets」的文件,裏面有幾百行。我需要獲取每一行,因爲它是自己的變量。讀取一個文件,並提取每一行,因爲它是自己的變量[Bash]
實施例:
[email protected]:~$ cat tweets
this is line one
this is line two
this is line three
好了,所以我需要在每行被設置爲變量。謝謝!
您可以使用:
while read line; do
echo "$line"
done < tweets
因此被自動設置爲「$線」的變量,還是我設置它? – RydallCooper
它是通過閱讀公告自動設置的。 – anubhava