?? what.sh
字號(hào):
#!/bin/bash# What are all those mysterious binaries in /usr/X11R6/bin?DIRECTORY="/usr/X11R6/bin"# Try also "/bin", "/usr/bin", "/usr/local/bin", etc.for file in $DIRECTORY/*do whatis `basename $file` # Echoes info about the binary.doneexit 0# You may wish to redirect output of this script, like so:# ./what.sh >>whatis.db# or view it a page at a time on stdout,# ./what.sh | less
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -