mh
来自「早期freebsd实现」· 代码 · 共 15 行
TXT
15 行
#! /bin/sh# A small shell script to run the MH-system.# Includes the mh command directory in the PATH# If a (mh) command is given this is run instead.#export PATH; PATH=/usr/new/mh:$PATH # the mh-system commandsif [ $# = 0 ]then export PS1; PS1="MH> " # an informative prompt used by sh exec $SHELL # use the default shellelse exec sh -c "$*" # run through shellfi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?