格式化輸出-printf命令
阿新 • • 發佈:2019-01-05
格式化輸出命令
printf 和 echo命令類似,輸出
printf 是linux 的標準輸出命令
#printf '輸出型別輸出格式' 輸出內容
輸出型別:
- %ns:輸出字串。n是數字,指輸出幾個字元
- %ni:輸出整數。n是數字,指輸出幾個數字
- %m.nf:輸出浮點數。m和n是數字,指輸出的整數位和小數位,如%8.2f代表共輸出8位數,其中2位小數,6位是整數
輸出格式
- \a :輸出警告聲音
- \b :輸出退格鍵,也就是backspace鍵
- \f :清除螢幕
- \n :換行
- \r :回車,也即是enter鍵
- \t :水平輸出退格鍵,也就是tab鍵
- \v :垂直輸出退格鍵,也就是tab鍵
例如:
[root@localhost ~]# printf %8.2f 11111.34
11111.34[root@localhost ~]# printf %s 1 2 3 4 5 6
123456[root@localhost ~]# echo 1 2 3 4 5 6
1 2 3 4 5 6
[root@localhost ~]# printf %s %s %s 1 2 3 4 5 6
%s%s123456[root@localhost ~]# printf '%s %s %s' 1 2 3 4 5 6
1 2 34 5 6[root@localhost ~]# printf '%s\t %s\t %s' 1 2 3 4 5 6
1 2 34 5 6[root@localhost ~]# printf '%s\t %s\t %s\n' 1 2 3 4 5 6
1 2 3
4 5 6
[root@localhost ~]# printf '%s\t %s\t %s\n' 1 2 3 4 5 6
1 2 3
4 5 6
檔案中的內容:
[[email protected] home]# cat student.txt
ID Name gender Mark
1 furong F 88
2 fengjie F 60
3 cang F 70
讀取檔案中的內容:
[root@localhost home]# printf '%s' $(cat student.txt)
IDNamegenderMark1furongF882fengjieF603cangF70[root@localhost home]#
[root@localhost home]# printf '%s\t%s\t%s\t%s\n' $(cat student.txt)
ID Name gender Mark
1 furong F 88
2 fengjie F 60
3 cang F 70
注意:
在awk命令的輸出中支援print和printf命令
- print:print會在每個輸出之後自動新增一個換行符(Linux預設沒有print命令)
- printf:printf是標準格式輸出命令,並不會自動新增換行符,如果需要換行,需要手工新增換行符