歡迎光臨
每天分享高質量文章

給初學者看的 shuf 命令教程 | Linux 中國

使用 shuf 命令,我們可以隨機打亂給定輸入檔案的行。
— Sk


致謝
編譯自 | https://www.ostechnix.com/the-shuf-command-tutorial-with-examples-for-beginners/ 
 作者 | Sk
 譯者 | geekpi ? ? 共計翻譯:713 篇 貢獻時間:1659 天

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

帶例子的 shuf 命令教程

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

  1. $ cat ostechnix.txt

  2. line1

  3. line2

  4. line3

  5. line4

  6. line5

  7. line6

  8. line7

  9. line8

  10. line9

  11. line10

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

  1. $ shuf ostechnix.txt

  2. line2

  3. line8

  4. line5

  5. line10

  6. line7

  7. line1

  8. line4

  9. line6

  10. line9

  11. line3

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

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

  1. $ touch output.txt

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

  1. $ shuf ostechnix.txt -o output.txt

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

  1. $ cat output.txt

  2. line2

  3. line8

  4. line9

  5. line10

  6. line1

  7. line3

  8. line7

  9. line6

  10. line4

  11. line5

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

  1. $ shuf -n 1 ostechnix.txt

  2. line6

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

  1. $ shuf -n 5 ostechnix.txt

  2. line10

  3. line4

  4. line5

  5. line9

  6. line3

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

  1. $ shuf -e line1 line2 line3 line4 line5

  2. line1

  3. line3

  4. line5

  5. line4

  6. line2

你也可以傳入數字:

  1. $ shuf -e 1 2 3 4 5

  2. 3

  3. 5

  4. 1

  5. 4

  6. 2

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

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

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

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

  2. 3

  3. 5

  4. 1

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

  1. $ shuf -i 1-10

  2. 1

  3. 9

  4. 8

  5. 2

  6. 4

  7. 7

  8. 6

  9. 3

  10. 10

  11. 5

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

  1. $ man shuf

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

乾杯!


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

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

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

贊(0)

分享創造快樂