xtermexec
来自「linux下的E_MAIL客户端源码」· 代码 · 共 19 行
TXT
19 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?