Linux中國

給初學者看的 shuf 命令教程

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中國 榮譽推出


本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive

對這篇文章感覺如何?

太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
雨落清風。心向陽

    You may also like

    Leave a reply

    您的電子郵箱地址不會被公開。 必填項已用 * 標註

    此站點使用Akismet來減少垃圾評論。了解我們如何處理您的評論數據

    More in:Linux中國