輸出聯繫變化的數字seq

主要做用:輸出聯繫變化的數字
格式:Seq 分割符號 開始 間隔 結束
開始默認是1,間隔默認是1,分隔符默認回車
一位是結束,兩位首末,三位首間隔末,沒有四位,開始能夠是負數
主要參數:
-f 指定格式打印
-s:用來指定分隔符號
[root@localhost shell]# seq 2
1
2
[root@localhost shell]# seq 1 5
1
2
3
4
5
[root@localhost shell]# seq 1 2 5
1
3
5
[root@localhost shell]# seq 1 3 5 23
seq: extra operand ‘23’
Try 'seq --help' for more information.
[root@localhost shell]# seq -3 2 5
-3
-1
1
3
5
[root@localhost shell]# seq -s ' ' 9 11
9 10 11
[root@localhost shell]# seq -s"`echo -e " ni "`" 9 11
9 ni 10 ni 11
例如一次製作10 個名dir001 , dir002 .. dir010 的目錄,它便頗有用途,我們能夠
這樣下一個命令即可了
seq -f 'dir%03g' 1 10 | xargs mkdirshell

輸出數字的首選,另外輸出連續的數據可使用for循環,和echo 00{1..3}orm

相關文章
相關標籤/搜索