- A+
所属分类:Shell
如下函数直接调用即可,可在函数后面加想要加的字符串,一个或多个
- ##函数后面直接加想要输出的字符串即可
- function print_x_axis(){
- local Line= Title= Bytes= Xlength=
- Title="$*"
- Line='*'
- if [ -n "${Title}" ]; then
- Bytes=(echo "{Title}"|wc -c)
- else
- Bytes=1
- fi
- Xlength=(( (stty size|awk '{print 2}') - {Bytes} ))
- printf '%s ' "${Title}"
- printf "%{Xlength}s\n" "{Line}"|sed "s/ /${Line}/g"
- }
- print_x_axis