博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shell 中简单的运算
阅读量:6479 次
发布时间:2019-06-23

本文共 504 字,大约阅读时间需要 1 分钟。

命令介绍

 1、expr 命令

[root@localhost shell]# a=1

[root@localhost shell]# b=2

[root@localhost shell]# expr $a + $b 

3

[root@localhost shell]# expr $a - $b

-1

[root@localhost shell]# expr $a \* $b

2

[root@localhost shell]# expr $b / $a

2

 2、let 命令 

[root@localhost shell]# c=4

[root@localhost shell]# let d=c+4

[root@localhost shell]# echo $d

8

3、内置命令 双括号

[root@localhost shell]# echo $((1+7)) ##不支持小数计算

[root@localhost shell]# echo $[7+8]

15

本文转自 水滴石川1 51CTO博客,原文链接:http://blog.51cto.com/sdsca/1890831,如需转载请自行联系原作者
你可能感兴趣的文章
PHP生成静态html文件 的三种方法
查看>>
sqlserver 批量删除存储过程(转)
查看>>
自建型呼叫中心
查看>>
Inno setup中定制安装路径
查看>>
要懂得对你的老板好一点!
查看>>
HDU5139:Formula(找规律+离线处理)
查看>>
visio如何让动态连接线的单箭头变成双箭头?
查看>>
poj 1273 Drainage Ditches 网络流最大流基础
查看>>
Bash: how to check if a process id (PID) exists
查看>>
Mirantis Fuel fundations
查看>>
启动Tomcat一闪而过——分析及解决过程
查看>>
Android intent action大全
查看>>
使用 Flash Builder 的 Apple iOS 开发过程
查看>>
Android OpenGL ES(一)OpenGL ES介绍
查看>>
RabbitMq_05_Topics
查看>>
redis.conf
查看>>
SCALA中的函数式编程
查看>>
Windows删除无效服务
查看>>
将List<int> 转换为用逗号连接为字符串
查看>>
C/C++中extern关键字详解
查看>>