16、Shell编程应用
时间:2007-06-11 来源:gis76748853
16、Shell编程应用
给shell脚本增加执行权限
chmod a+x first.sh
Example 1
#The First she
echo "please enter your name:"
read fname
echo ${fname} ##{}可以省略
s=xxx
echo $s
修改/etc/profile
PATH=$PATH:.
export PATH ##这样就可以直接执行当前目录的shell脚本了 First.sh
给shell脚本增加执行权限
chmod a+x first.sh
Example 1
#The First she
echo "please enter your name:"
read fname
echo ${fname} ##{}可以省略
s=xxx
echo $s
修改/etc/profile
PATH=$PATH:.
export PATH ##这样就可以直接执行当前目录的shell脚本了 First.sh
相关阅读 更多 +