center

来自「android-w.song.android.widget」· 代码 · 共 25 行

TXT
25
字号
#! /bin/bash## center - center a group of lines## tabs in the lines might cause this to look a little bit off##width=${COLUMNS:-80}if [[ $# == 0 ]]then	set -- /dev/stdinfifor filedo	while read -r	do		printf "%*s\n" $(( (width+${#REPLY})/2 )) "$REPLY"	done < $filedoneexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?