betatoy 发表于 2003-6-6 23:51:02

sh是幹什麽用的

sh是幹什麽用的? 我的linux字典裏竟然沒有這個解釋

linuxlover 发表于 2003-6-7 08:37:21

执行脚本程序的命令!

betatoy 发表于 2003-6-7 16:02:44

請問什麽是腳本程序?

linuxlover 发表于 2003-6-7 17:20:05

介绍一个脚本
作者:javalee



#!/bin/ksh
# Script name: Speller
#
#
# Purpose: Check and fix spelling errors in a file
#

exec < tmp   # opens the tmp file
while read line# read from the tmp file
do
print $line
print -n "Is this word correct? [Y/N] "
read answer < /dev/tty# read from the terminal
    case $answer in
    [Yy]*)
      continue
            ;;
    *)
      print "New word? "
      read word < /dev/tty
      sed "s/$line/$word/" tmp > error
      mv error tmp
      print $word has been changed.
            ;;
    esac
done



这就是!!!!!!!!!!!!!!!!!! :oops:
页: [1]
查看完整版本: sh是幹什麽用的