zoukankan      html  css  js  c++  java
  • shell 基础5

    数值运算:

    declare:声明变量类型

    declare [+/-][选项] 变量名
    选项:
    -:给变量设定类型属性
    +:取消变量的类型属性
    -i:将变量声明为整数型(integer)
    -x:将变量声明为环境变量
    -p:显示指定变量的被声明的类型

    [root@localhost tmp]# aa=11
    [root@localhost tmp]# bb=22
    [root@localhost tmp]# cc=$aa+$bb
    [root@localhost tmp]# echo $cc
    11+22

    方法一:
    [root@localhost tmp]# declare -i cc=$aa+$bb
    [root@localhost tmp]# echo $cc
    33

    方法二:
    [root@localhost tmp]# aa=11
    [root@localhost tmp]# bb=22
    [root@localhost tmp]# dd=$(expr $aa + $bb)
    [root@localhost tmp]# echo $dd
    33
    说明:+号两侧的空格不能省略

    方法三:
    [root@localhost tmp]# aa=11
    [root@localhost tmp]# bb=22
    [root@localhost tmp]# ee=$(($aa + $bb))
    [root@localhost tmp]# echo $ee
    33


    [root@localhost tmp]#
    [root@localhost tmp]# declare -p cc
    declare -i cc="33"
    [root@localhost tmp]# declare -p aa
    declare -- aa="11"
    [root@localhost tmp]# declare -p bb
    declare -- bb="22"

  • 相关阅读:
    使用vue-cli脚手架搭建简单项目框架
    总结HTML5
    导出网页内容
    vue 编写插件
    各ui库项目结构
    webpack 模块方法
    webpack4.0
    webapp优化
    http/2.0与http/1.1的区别
    setTimeout与Promise的区别
  • 原文地址:https://www.cnblogs.com/javasl/p/11155138.html
Copyright © 2011-2022 走看看