viewdata.sh

来自「Shall高级编程」· Shell 代码 · 共 22 行

SH
22
字号
#!/bin/bash# viewdata.sh# Conversion of VIEWDATA.BAT to shell script.DATAFILE=/home/bozo/datafiles/book-collection.dataARGNO=1# @ECHO OFF                 Command unnecessary here.if [ $# -lt "$ARGNO" ]    # IF !%1==! GOTO VIEWDATAthen  less $DATAFILE          # TYPE C:\MYDIR\BOOKLIST.TXT | MOREelse  grep "$1" $DATAFILE     # FIND "%1" C:\MYDIR\BOOKLIST.TXTfi  exit 0                    # :EXIT0#  GOTOs, labels, smoke-and-mirrors, and flimflam unnecessary.#  The converted script is short, sweet, and clean,#+ which is more than can be said for the original.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?