菜鸟的问题
好记性不如烂笔头~。~
摘要: 1.if判断 #!/bin/bash - # - 表示安全 i=$1 #$1 参数符 if [ $i -eq 0 ];then echo "0" elif [ $i -eq 1 ];then echo "1" else echo "!=" fi exit 0 #正常运行程序并退出程序 exit 1 阅读全文
posted @ 2019-03-29 15:22 ArSang-Blog 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1.vim创建shell脚本: vim创建shell脚本: # vim xxx.sh 执行shell脚本: ①# sh xxx.sh ②# chmod +x ./xxx.sh 执行 ./xxx.sh 2.vim使用技巧: ①.' i' 键:将vim环境变为可插入的模式来编写shell脚本 ②.'Es 阅读全文
posted @ 2019-03-29 14:19 ArSang-Blog 阅读(1363) 评论(0) 推荐(0) 编辑