sugendocs.sh
来自「su 的源代码库」· Shell 代码 · 共 32 行
SH
32 行
#! /bin/sh# /*********************** self documentation **********************/# SUGENDOCS - generate complete list of selfdocs in latex form## Usage: sugendocs -o output filename is: selfdocs.tex# Note: this shell simply calls gendocs##/**************** end self doc ********************************/# Author: John Stockwell -- 5 Jan 1992# test for CWPROOTif test "${CWPROOT}" = ""then echo "The environment variable \"CWPROOT\" " echo "is not set in the user's working shell environment." echo "To set this variable in C-shell, use the command: " echo " setenv CWPROOT /your/cwp/root/path" echo "To set this variable in Bourne or Korn-shell, use the command:" echo " export CWPROOT=/your/cwp/root/path" ; exit 1fiROOT=${CWPROOT}BIN=$ROOT/binPATH=${PATH}:${BIN}gendocsexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?