?? center
字號:
#! /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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -