zoukankan      html  css  js  c++  java
  • shell 空格问题

    1.定义变量时, =号的两边不可以留空格.

      eg:
        gender=femal------------right
        gender =femal-----------wrong
        gender= femal-----------wrong
    2.条件测试语句 [ 符号的两边都要留空格.

      eg:

        if [ $gender = femal ]; then-------right.
        echo "you are femal";
        fi

        if[ $gender...-----------------------wrong
        if [$gender...----------------------wrong.

    3条件测试的内容,如果是字符串比较的话, 比较符号两边要留空格!

      eg:

        if [ $gender = femal ]; then-------right.
        if [ $gender= femal ]; then--------wrong.
        if [ $gender=femal ]; then---------wrong.

    4.如果if 和 then写在同一行, 那么,注意, then的前面要跟上 ; 号.如果 then 换行写, 那么也没问题.(bash:==,dash =)

      eg:

        if [ $gender == femal ]; then-------right.
        if [ $gender == femal ]
        then-------------------------------right.
        if [ $gender= = femal ] then-------wrong. then前面少了 ; 号.
      提示出错信息:
        syntax error near unexpected token then
      同理,还有很多出错信息 比如
        syntax error near unexpected token fi 等都是这样引起的.

    5.if 后面一定要跟上 then. 同理elif 后面一定要跟上 then.

      不然提示出错信息:
        syntax error near unexpected token else

      1)if 语句后面需要跟着then,同时前面要有分号;
      2) 空格非常重要,shell 会认为空格前的为一个命令,如果a=3 认为是赋值操作,如果写成a = 3,那么就会认为a为一个命令 this=`ls -l |grep '^-' | wc -l `
      3) 操作符之间要用空格分开 ,如 test ! -d $1,其中的!和-d就要用空格分开
      空格是命令解析中的重要分隔符

  • 相关阅读:
    proxy
    javascript作用域链
    javascript技巧
    for of
    ES6模块与CommonJS模块有什么区别?
    DOM
    defer和async的区别
    浏览器如何解析css选择器?
    你是如何理解Vue的响应式系统的
    信息安全系统设计基础第十二周学习总结
  • 原文地址:https://www.cnblogs.com/tswcypy/p/4566963.html
Copyright © 2011-2022 走看看