給初學者看的 shuf 命令教程

Sk發表於2018-05-13

shuf 命令用於在類 Unix 作業系統中生成隨機排列。使用 shuf 命令,我們可以隨機打亂給定輸入檔案的行。shuf 命令是 GNU Coreutils 的一部分,因此你不必擔心安裝問題。在這個簡短的教程中,讓我向你展示一些 shuf 命令的例子。

帶例子的 shuf 命令教程

我有一個名為 ostechnix.txt 的檔案,內容如下:

$ cat ostechnix.txt
line1
line2
line3
line4
line5
line6
line7
line8
line9
line10

現在讓我們以隨機順序顯示上面的行。為此,請執行:

$ shuf ostechnix.txt
line2
line8
line5
line10
line7
line1
line4
line6
line9
line3

看到了嗎?上面的命令將名為 ostechnix.txt 中的行隨機排列並輸出了結果。

你可能想將輸出寫入另一個檔案。例如,我想將輸出儲存到 output.txt 中。為此,請先建立 output.txt

$ touch output.txt

然後,像下面使用 -o 標誌將輸出寫入該檔案:

$ shuf ostechnix.txt -o output.txt

上面的命令將隨機隨機打亂 ostechnix.txt 的內容並將輸出寫入 output.txt。你可以使用命令檢視 output.txt 的內容:

$ cat output.txt

line2
line8
line9
line10
line1
line3
line7
line6
line4
line5

我只想顯示檔案中的任意一行。我該怎麼做?很簡單!

$ shuf -n 1 ostechnix.txt
line6

同樣,我們可以選擇前 “n” 個隨機條目。以下命令將只顯示前五個隨機條目:

$ shuf -n 5 ostechnix.txt
line10
line4
line5
line9
line3

如下所示,我們可以直接使用 -e 標誌傳入輸入,而不是從檔案中讀取行:

$ shuf -e line1 line2 line3 line4 line5
line1
line3
line5
line4
line2

你也可以傳入數字:

$ shuf -e 1 2 3 4 5
3
5
1
4
2

要快速在給定範圍選擇一個,請改用此命令:

$ shuf -n 1 -e 1 2 3 4 5

或者,選擇下面的任意三個隨機數字:

$ shuf -n 3 -e 1 2 3 4 5
3
5
1

我們也可以在特定範圍內生成隨機數。例如,要顯示 1 到 10 之間的隨機數,只需使用:

$ shuf -i 1-10
1
9
8
2
4
7
6
3
10
5

有關更多詳細資訊,請參閱手冊頁。

$ man shuf

今天就是這些。還有更多更好的東西。敬請關注!

乾杯!


via: https://www.ostechnix.com/the-shuf-command-tutorial-with-examples-for-beginners/

作者:SK 選題:lujun9972 譯者:geekpi 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

相關文章