文件名称:一。脚本语言-UNIX初级教程
文件大小:1.01MB
文件格式:PPT
更新时间:2024-05-12 12:27:03
UNIX
一。脚本语言 例1:简单的脚本 $ cat won #!/bin/sh 指定命令解释程序(可以是任何可执行程序,缺省为/bin/sh) # 注释,直到行尾为注释,shell 不加解释执行 # display the current date and time , # number of users currently logged in . echo echo –e “Date and time: \c “ date echo –e “ Number of users on the system:\c “ who | wc –l exit 0 $