• 【shell编程】2、语法


    Linux 下执行.sh文件总是提示permission denied

    如果你是root登陆的话(不是的话,切换到root用户,对*.sh赋可执行的权限) 
    chmod 777 *.sh   or   chmod +x  *.sh,然后运行就OK了

    sh -x   *.sh   运行命令

    一、声明变量

    myUrl="http://see.xidian.edu.cn/cpp/linux/"
    myNum=100

    注意:
    变量名和等号之间不能有空格,这可能和你熟悉的所有编程语言都不一样。
    同时,变量名的命名须遵循如下规则:
    首个字符必须为字母(a-z,A-Z)。
    中间不能有空格,可以使用下划线(_)。
    不能使用标点符号。
    不能使用bash里的关键字(可用help命令查看保留关键字)。

    二、使用变量

    echo ${your_name}
    注意:推荐给所有变量加上花括号,这是个好的编程习惯。

    三、重新定义变量

    myUrl="http://see.xidian.edu.cn/cpp/linux/"
    echo ${myUrl}
    myUrl="http://see.xidian.edu.cn/cpp/shell/"
    echo ${myUrl}

    注意:第二次赋值的时候不能写 $myUrl="http://see.xidian.edu.cn/cpp/shell/",使用变量的时候才加美元符($)。

    四、只读变量

    myUrl="http://see.xidian.edu.cn/cpp/shell/"
    readonly myUrl
    myUrl="http://see.xidian.edu.cn/cpp/danpianji/"

    运行脚本,结果如下:
    /bin/sh: NAME: This variable is read only.

    五、删除变量
    变量被删除后不能再次使用;unset 命令不能删除只读变量。
    unset variable_name

    六、变量类型
    运行shell时,会同时存在三种变量:
    1) 局部变量
    局部变量在脚本或命令中定义,仅在当前shell实例中有效,其他shell启动的程序不能访问局部变量。
    2) 环境变量
    所有的程序,包括shell启动的程序,都能访问环境变量,有些程序需要环境变量来保证其正常运行。必要的时候shell脚本也可以定义环境变量。
    3) shell变量
    shell变量是由shell程序设置的特殊变量。shell变量中有一部分是环境变量,有一部分是局部变量,这些变量保证了shell的正常运行

  • 相关阅读:
    Linux踩坑填坑记录
    Scala安装后,在IDEA中配置
    Centos 搭建Hadoop
    conductor FAQ
    conductor Workflow Metrics
    conductor APIs
    Extending Conductor
    conductor任务域
    Conductor Task Workers
    Conductor Server
  • 原文地址:https://www.cnblogs.com/wangzhongqiu/p/7019355.html
Copyright © 2020-2023  润新知