码迷,mamicode.com
首页 > 系统相关 > 详细

14.自学Linux之路:位置参数,交互式脚本,给变量以默认值

时间:2017-03-25 18:27:32      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:时间   知识   read   脚本   文件   http   nano   显示   bin   

知识点1:位置参数

    位置参数#/tmp/tesh.sh  3  89

       $0:脚本自身

       $1:脚本的第一个参数

       $2:脚本的第二个参数

       ....

     :任意给两个整数,求和,差,积,商

       #nano  dd.sh

 

       #!/bin/bash

       #

       echo $1

       echo $2

       echo $0

 

       #chmod  +x  dd.sh

       #./pos.sh  5 9

        

       结果:5

          9

          dd.sh

 

        #!/bin/bash

        #

        echo "the sum is :$[$1+$2]."

        echo "the mul is :$[$1*$$2]."

 

        #./dd.sh  5  9

       结果:14

          45

      

     特殊变量:

        $#:位置参数的个数

          #!/bin/bash

          #

          echo "the sum is :$[$1+$2]."

          echo "the mul is :$[$1*$$2]."

          echo  $#

      

          #./dd.sh  5  9

          结果:14

             45

             4

        $@,$*:显示所有的位置变量

          #!/bin/bash

          #

          echo "the sum is :$[$1+$2]."

          echo "the mul is :$[$1*$$2]."

          echo  $#

          echo  $*

      

          #./dd.sh  5  9  1  4  3  5  6

          结果:14

             45

             7

             5  9  1  4  3  5  6

 

知识点2:交互式脚本

    #read num1

      566

    #read num2

      665

 

        技术分享 技术分享

 

 

        技术分享

 

      read -p:类似于python中的input函数

          -t:设置变量赋值时间,单位为秒

            #read a b            #read a b           #read a b

              50 100               30                   30  50  60  70

            #echo $a             #echo $a           #echo $a

              50                     30                    30

            #echo $b             #echo $b           #echo $b

              100       (NULL)               50  60  70

 

        技术分享

 

知识点3:给变量加上默认值

    #varName=${varName:-value}

      例:#a=${a:-45}

        若a本身有值,就用其本身的值

        若a本有没值,就用45这个默认值

        #unset a:清空变量a的值

         技术分享

        练习:给定一个文件路径,来判断文件内容的类型

          #!/bin/bash

          read -p "Enter a path to some file:"  fileName

          echo "This file `file $fileName`"

          

 

          

      

       

 

14.自学Linux之路:位置参数,交互式脚本,给变量以默认值

标签:时间   知识   read   脚本   文件   http   nano   显示   bin   

原文地址:http://www.cnblogs.com/wuwen19940508/p/6617895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!