摘要:
变量自增语法:a=a+1 字符串拼接语法:a=$0" "a shell的终端打印echo hello worldecho "hello world"echo 'hello world'echo "hello world \!"echo 'hello world !'使用不带引号的echo时,没法在所 阅读全文
2020年4月8日 #
摘要:
shell格式的if语句: [root@www file_test]# cat if.sh #!/bin/bash#if testif [ $# -eq 0 ];then exitfiif [ $1 -eq 1 ];then echo "the num is : abc"elif [ $1 -gt 阅读全文