摘要:
var_1=2var_2=3var_res="$[$var_1+$var_2]"echo $_var_res #print 5 阅读全文
摘要:
#!/bin/bash#print hello world in the console windowa="Hello,World"echo "A is:" $a赋值符号左右两边不能有空格,否则语法错误。num=2echo "this is ${num}d"用{}将变量名括起来,起到确定变量名的作用获取命令行参数总数 $#后台执行,模拟多进程#!/bin/bashrsync .... &rsync .... &... 阅读全文