您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在Linux中使用seq命令,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
01. 命令概述
seq命令用于產生整數序列。
02. 命令格式
用法:
seq [選項]... 尾數 seq [選項]... 首數 尾數 seq [選項]... 首數 增量 尾數
03. 常用選項
以指定增量從首數開始打印數字到尾數。
-f, --format=格式 使用printf 樣式的浮點格式 -s, --separator=字符串 使用指定字符串分隔數字(默認使用:\n) -w, --equal-width 在列前添加0 使得寬度相同 --help 顯示此幫助信息并退出 --version 顯示版本信息并退出
04. 參考示例
4.1 輸出1-5
[deng@localhost ~]$ seq 5 1 2 3 4 5 [deng@localhost ~]$
4.2 輸出1-5
[deng@localhost ~]$ seq 1 5 1 2 3 4 5 [deng@localhost ~]$
4.3 輸出3-5
[deng@localhost ~]$ seq 3 5 3 4 5 [deng@localhost ~]$
4.4 輸出1 4 7 10
[deng@localhost ~]$ seq 1 3 10 1 4 7 10 [deng@localhost ~]$
4.5 指定格式輸出
[deng@localhost ~]$ seq -f "%3g" 9 11 9 10 11 [deng@localhost ~]$
意思是-f指定格式,%后面指定3位數,默認是%g,%3g不夠位數的地方都是空格填補
4.6 指定格式輸出
[deng@localhost ~]$ seq -f "%03g" 9 11 009 010 011 [deng@localhost ~]$
意思是打印三位,不足的地方用0填補
4.7 指定格式輸出
[deng@localhost ~]$ seq -f "str%03g" 9 11 str009 str010 str011 [deng@localhost ~]$
意思是打印三位不足的地方以0填補,在前面加上str
4.8 在列前添加0使得寬度相同
[deng@localhost ~]$ seq -w 9 11 09 10 11 [deng@localhost ~]$
當輸出等寬字符串時不應再指定格式字符串,-w與-f不能一起用
4.9 使用指定字符串分隔數字
[deng@localhost ~]$ seq -s " " -f "str%03g" 9 11 str009 str010 str011 [deng@localhost ~]$
4.10 使用tab鍵分隔數字
[deng@localhost ~]$ seq -s "`echo -e '\t'`" 9 11 9 10 11 [deng@localhost ~]$
先用命令做成一個tab,然后再指定成分隔符
以上就是如何在Linux中使用seq命令,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。