📄 statrun
字号:
#!/bin/sh## Usage: statrun status-file command command-args## This script runs a command and places the exit code in the file specified# in arg 1. We do this because xterm will not return the status of the# exec'd process.#STATFILE=$1shifteval $*echo $? > $STATFILE
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -