Linux Shell 数学运算

在Linux中直接使用数学运算符进行数学运算往往得不到我们想要的计算结果。要在Shell中进行数学运算,我们需要借助点小手段。目前,Linux Shell中进行数学运算的方法主要有三种:bc、expr、let。

1 bc

1.1 命令行方式

在bash界面,直接输入bc或者bc -q,就可以进去bc的命令行,通过使用数学运算符能够得到我们想要的结果:

 [scott@centos1 ~]$ bc -q

 +

 -

 -

 *

 /

 %

 ^

 scale=;/

 .

 %

 scale=;/

 %

输入运算数和运算符号,回车即可得到运算结果。通过设置scale,可以定义当前的小数点精度,对除法、取余和幂运算有效。

这种方式只能在bc的命令行中进行,在代码中当然不能这样干了。

1.2 管道方式

 [scott@centos1 ~]$ echo +|bc

 [scott@centos1 ~]$ echo -|bc

 -

 [scott@centos1 ~]$ echo *|bc

 [scott@centos1 ~]$ echo /|bc

 [scott@centos1 ~]$ echo %|bc

 [scott@centos1 ~]$ echo "scale=2;2/3"|bc

 .

 [scott@centos1 ~]$ echo "scale=2;2%3"|bc

 .

 [scott@centos1 ~]$ echo "scale=2;3/2"|bc

 1.50

 [scott@centos1 ~]$ echo "scale=2;3%2"|bc

 [scott@centos1 ~]$ echo ^|bc

这种管道方式在shell中应用的更多一些,同样可以在运算的时候加上精度的限制。

1.3 进制转换

 [scott@centos1 ~]$ echo "ibase=10;15"|bc

 [scott@centos1 ~]$ echo "ibase=8;15"|bc

 [scott@centos1 ~]$ echo "ibase=16;F"|bc

上文的例子,是把几种进制都转化为10进制。

1.4 表达式运算

 [scott@centos1 ~]$ vim bc-test.bc

 [scott@centos1 ~]$ bc -q bc-test.bc

 -

 .

其中,bc-test.bc的内容为:

+

-

*

/

scale=;/

scale=;/

就是表达式的集合。

2 expr

expr是个很强大的命令,可以进行数学运算,也可以进行字符串的操作等。先看下数学运算的功能。

 [scott@centos1 ~]$ expr +

 +

 [scott@centos1 ~]$ expr  +

 expr: syntax error

 [scott@centos1 ~]$ expr  + 

 [scott@centos1 ~]$ expr  * 

 expr: syntax error

 [scott@centos1 ~]$ expr  \* 

 [scott@centos1 ~]$ expr  / 

 [scott@centos1 ~]$ expr  % 

expr不支持浮点运算,不支持幂乘运算,在运算的时候可要注意运算符和运算数的分离,写在一起可是不识别的,另外,乘法有点特殊,需要转义。

下面看看expr的字符串操作。

 [scott@centos1 ~]$ string=123456789asdfg

 [scott@centos1 ~]$ expr length $string

 [scott@centos1 ~]$ expr index $string ''

 [scott@centos1 ~]$ expr substr $string  

 789a

 [scott@centos1 ~]$ expr substr $string  

 789asdfg

上例分别利用expr命令进行了计算字符串长度、获取字串或者字符的首次出现位置、取指定位置开始的限定长度的字符字串,需要注意的是expr中的下标是从1开始的。

3 let

 [scott@centos1 ~]$ let a=+

 [scott@centos1 ~]$ echo $a

 [scott@centos1 ~]$ let a=*

 [scott@centos1 ~]$ echo $a

 [scott@centos1 ~]$ let a=/

 [scott@centos1 ~]$ echo $a

 [scott@centos1 ~]$ let a=%

 [scott@centos1 ~]$ echo $a

 [scott@centos1 ~]$ let a=^

 [scott@centos1 ~]$ echo $a

 [scott@centos1 ~]$ let a=**

 [scott@centos1 ~]$ echo $a

需要注意的是,let命令里的幂乘运算不是^,而是**。

4 其他方式

 [scott@centos1 ~]$ echo $((+))

 [scott@centos1 ~]$ echo $((*))

 [scott@centos1 ~]$ echo $((**))

 [scott@centos1 ~]$ echo $((((+))*))

 [scott@centos1 ~]$ echo `date`

 Fri Aug  :: PDT 

 [scott@centos1 ~]$ echo `date +%Y%m%d`

Linux Shell 数学运算的更多相关文章

  1. Shell初学(六)Linux Shell 时间运算以及时间差计算方法

    Linux Shell 时间运算以及时间差计算方法 时间的加减,以及时间差的计算. 1. 时间加减 这里处理方法,是将基础的时间转变为时间戳,然后,需要增加或者改变时间,变成 秒. 如:1990-01 ...

  2. Linux shell 整数运算 let [ ] (( )) expr以及 浮点数 bc用法(转)

    Abstract : 1)  Linux shell 中使用 let , [ ] ,(( )) 三种运算符操作 shell 变量进行简单的基本运算:2)Linux shell 中使用 expr 与 b ...

  3. shell 数学运算

    数学运算之 expr expr操作符对照表 比较大小,只能对整数进行比较,需要加空格,linux 保留关键字要转义 num1=30 num2=50 expr $num1 \> $num2 查看上 ...

  4. 7 shell 数学运算

    shell中数学运算的易错点: 1.在 Bash Shell 中,如果不特别指明,每一个变量的值都是字符串,无论你给变量赋值时有没有使用引号,值都会以字符串的形式存储.即使是将整数和小数赋值给变量,它 ...

  5. shell数学运算

    shell的数学运算 branches@ubuntu:~$ var1=$[ * ] branches@ubuntu:~$ echo $var1 branches@ubuntu:~$ var2=$[$v ...

  6. 【Linux】shell数学运算

    在Bash shell环境中,可以利用let.(())和[]执行基本的算术操作.而在进行高级操作时,expr和bc这两个工具就特别有用 let的使用 Script01.sh #!/bin/bash # ...

  7. shell 数学运算总结

    # !/bin/bash ## 整数-算数运算 ### 1. expr r=`expr 4 + 5` ### Tips:1. '4''+''5'三者之间有空白 echo $r; r=`expr 4 \ ...

  8. shell编程之数学运算

    shell数学运算支持整数运算的四种方法 1.let命令 no1=4; no2=5; let result=no1+no2 2.[]操作符 result=$[ no1 + no2] 3.(())操作符 ...

  9. shell执行数学运算

    整数: expr let $(()) $[] 浮点数: bc 1.使用expr ♦参与运算的成员和运算符之间必须有一个空格: ♦对于那些容易被shell错解的,在它们传入expr命令之前,需要使用sh ...

随机推荐

  1. "Principles of Reactive Programming" 之 <Persistent Actor State>学习笔记

    这是<Pinciples of Reactive Programming>week6的最后一课. 为什么需要把actor的状态持久化? 如果actor没有状态,那么在任何实时,这个acto ...

  2. NGUI自适应分辨率,黑边自动填充, 无黑边,等比例缩放

    原地址:http://game.ceeger.com/forum/read.php?tid=16571 1,给背景添加一个UIstretch, .将style选择最后一个FitInternalKeep ...

  3. adt安装慢解决

    原地址:http://yuanzhifei89.iteye.com/blog/1884398 安装adt的时候不管时在线安装还是下载下来了离线安装,都不见安装进度条动,只要把一个选项勾掉立马就让进度条 ...

  4. maven3常用命令\创建Project

    转自 http://blog.csdn.net/edward0830ly/article/details/8748986 ------------------------------maven3常用命 ...

  5. 李洪强iOS开发之OC常见错误汇总

    // //  main.m //  16 - 常见错误汇总 // //  Created by vic fan on 16/7/13. //  Copyright © 2016年 李洪强. All r ...

  6. poj 2531 Network Saboteur( dfs )

    题目:http://poj.org/problem?id=2531 题意:一个矩阵,分成两个集合,求最大的 阻碍量 改的 一位大神的代码,比较简洁 #include<stdio.h> #i ...

  7. 函数flst_init

    /** The null file address */UNIV_INTERN fil_addr_t fil_addr_null = {FIL_NULL, 0}; /***************** ...

  8. Repeater的ItemCommand事件(LinkButton)

    Repeater的ItemCommand事件,就是在里面加一个超链接的按钮,所有按钮都指向同一个事件,就是ItemCommand事件. 至于如何区分是点击的什么按钮,还有传的值,需要用到LinkBut ...

  9. 在Silverlight中的DispatcherTimer的Tick中使用基于事件的异步请求

    需求:在silverlight用户界面上使用计时器定时刷新数据. 在 Silverlight 中的 DispatcherTimer 的 Tick 事件 中使用异步请求数据时,会出现多次请求的问题,以下 ...

  10. 8.2/baltic神(水)题

    summary:10 bzoj1334: Description N个政党要组成一个联合内阁,每个党都有自己的席位数. 现在希望你找出一种方案,你选中的党的席位数要大于总数的一半,并且联合内阁的席位数 ...