Linux学习笔记:printf

格式化输出命令printf,不过不能直接接文件,只能把文件内容cat出来。

[root@vmtest ~]# printf "%-10s %-10s %-10s %-10s\n" $(cat score.txt)

Name       en         math       sport     

coosh      100        100        100       

panny      90         90         90        

mingming   85         85         99.5 


你可能感兴趣的:(printf,学习笔记)