Linuxshell中的printf的详细⽤法Linux shell中的printf的详细⽤法
⼀语法
printf '输出类型输出格式' 输出内容
输出类型:
%ns:输出字符串。n是数字指代输出⼏个字符。
%ni:输出整数。n是数字指代输出⼏个数字。
%m.n:输出浮点数。m和n是数字,指代输出的整数位数和⼩数
如%8.2代表共输出8位数,其中2位是⼩数,6位是整数。
输出格式:
⼆实战
[root@localhost ~]# printf %s 1 2 3 4 5 6
123456[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\n' 1 2 3 4 5 6
1 2 3
4 5 6
[root@localhost ~]# printf '%s' $()
1furongF852fengjF603cangF70[root@localhost ~]#
linuxshell脚本怎么运行
[root@localhost ~]# printf '%s\t%s\t%s\t%s\n' $()
1 furong F 85
2 fengj F 60
3 cang F 70
如有疑问请留⾔或者到本站社区交流讨论,感谢阅读,希望能帮助到⼤家,谢谢⼤家对本站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。