📄 xtermexec
字号:
#!/bin/sh## Usage: xtermexec title command command-args## This script uses the statrun script to get the return status from a process# invoked in an xterm. We do this because xterm will not return the# status of the exec'd process.#STATFILE=/tmp/stat.$$TITLE=$1shiftxterm -title "$TITLE" -e statrun $STATFILE $*STATUS=`cat $STATFILE`rm -f $STATFILEexit $STATUS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -