shell小结

前端之家收集整理的这篇文章主要介绍了shell小结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

shell脚本中的小数运算:

awk:

  1. hadoop@Mcnode1:~/cloud/adam/xubo/data/test20160310/test$catdemical.sh
  2. #!/bin/bash
  3. echo`awk-vx=2.45-vy=3.123'BEGIN{printf"%.2f\n",x*y}'`
  4. s=1.5
  5. echo$s
  6. echo`awk-vx=2.45-vy="$s"'BEGIN{printf"%.2f\n",x*y}'`
bc:
  1. hadoop@Mcnode1:~/cloud/adam/xubo/data/test20160310/test$catdemical.sh
  2. #!/bin/bash
  3. s=1.5
  4. echo$s
  5. #product=`awk-vx=2.45-vy="$s"'BEGIN{printf"%.2f\n",0);background-color:inherit;">
  6. s2=$(echo"scale=3;6/5"|bc)
  7. echo$s2
  8. s3=$(echo"scale=3;$s/5"|bc)
  9. echo$s3

把字符串转成数组:

    #!/bin/bash
  1. str="1,2,3,4";
  2. //与/之间与分割的字符,另外/后有一个空格不可省略
  3. str=${str//,/};
  4. arr=($str);
  5. #遍历数组
  6. foreachin${arr[*]}
  7. do
  8. echo$each
  9. done

Linux let:

#!/bin/bash

let a=5+4
 b9-3 
echo $a $b

死循环:

while true

do

......

done

原文链接:https://www.f2er.com/bash/388562.html

猜你在找的Bash相关文章