温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

shell两个脚本连接方法介绍

发布时间:2020-05-11 11:07:32 来源:亿速云 阅读:379 作者:Leah 栏目:软件技术

shell两个脚本是怎样连起来的?相信很多人对shell两个脚本连接的了解处于懵懂状态,小编给大家总结了以下内容。如下资料是关于shell两个脚本连接方法的内容介绍。

#!/bin/bash

#

#This is for auto run the script to save the time 

#

#By bobo5620301@163.com

#chose the latest 10 file and chose one to run 


array[0]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '2p'`

array[1]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '3p'`

array[2]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '4p'`

array[3]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '5p'`

array[4]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '6p'`

array[5]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '7p'`

array[6]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '8p'`

array[7]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '9p'`

array[8]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '10p'`

array[9]=`ls -lt /mnt/shfw/builds/Griffin/Experimental  | awk '{ print $9 }' | sed -n '11p'`

cat << EOF

    Select which one you like to run:

    ============================

    1. ${array[0]}

    2. ${array[1]}

    3  ${array[2]}

    4. ${array[3]}

    5. ${array[4]}

    6. ${array[5]}

    7. ${array[6]}

    8. ${array[7]}

    9. ${array[8]}

   10. ${array[9]}


EOF

while [ ! "${command}" ]

do


    echo -n "Select commandistrator :"

    read ASTR


    case ${ASTR} in

        1 )  command=${array[0]}     ;;

        2 )  command=${array[1]}     ;;

        3 )  command=${array[2]}     ;;

        4 )  command=${array[3]}     ;;

        5 )  command=${array[4]}     ;;

        6 )  command=${array[5]}     ;;

        7 )  command=${array[6]}     ;;

        8 )  command=${array[7]}     ;;

        9 )  command=${array[8]}     ;;

       10 )  command=${array[9]}    ;;

        * )  echo "Number not found" ;;

    esac


done

# when we chose the file and we will run int with the below command one after one. 

echo "the select command is ${command}"


/home/mli/workspace/mkautows.sh  /mnt/shfw/builds/Griffin/Experimental/${command}/sf3500A0SataDebug /home/mli/workspace/autows

echo "/mnt/shfw/builds/Griffin/Experimental/${command}/sf3500A0SataDebug "

/home/mli/workspace/cpfw_tcms.py --releasedir=/mnt/shfw/builds/Griffin/Experimental/${command}/sf3500A0SataDebug   --config=C35000301

关于shell两个脚本连接方法就分享到这里了,希望以上内容可以对大家有一定的参考价值,可以学以致用。如果喜欢本篇文章,不妨把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI