2013年1月24日

shell 脚本实例

摘要: 检查txt是不是超过一行数据,超过的话就svn 更新文件if [ $USER != 'root' ];then echo "not root"; exit 1;fip=/usr/local/bbs_new/n=`cat $1|wc -l`#尼玛赋值要用反引号!!!!!echo "###############";echo "have "$n" svn up";echo "###############";if [ $n > 1 ];thencat $1 |while rea 阅读全文

posted @ 2013-01-24 11:40 choose.wang 阅读(110) 评论(0) 推荐(0) 编辑

shell脚本基础

摘要: 开头:1.文件开头 #!/bin/sh2.需要给脚本执行权限 chmod +x 文件名3.使用./文件名 可以运行注释方法:#这是由choose发起的脚本#快来联系我,wangqizhi1987@gmail.com#这是so easy 版本的#哪里不会也别点哪里#谢谢大家申明变量choose="Not Hello World"echo $choose#print choosenum=2echo "this is the ${num}nd" #will print "this is the 2nd"参数脚本名 参数1脚本中用 " 阅读全文

posted @ 2013-01-24 10:29 choose.wang 阅读(226) 评论(0) 推荐(0) 编辑

导航