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