菜鳥--shell指令碼編寫之解決問題篇

來源:互聯網
上載者:User

標籤:for   app   ash   class   tmp   port   --   shel   本地   

 一、執行時發現adb shell進入裝置後不再繼續往下執行了
adb shellcd /system/plugin/
....
exit

在網上查到的都是bat檔案調用adb shell,沒有sh檔案調用adb shell不往下執行的,尋找其他無果。

最後採用這個方法

adb shell < 1.txt

在1.txt裡輸入想在裝置裡啟動並執行命令,可達到預期。

二、1.txt中返回${res} ,想在父指令碼中引用${res} 

解決辦法:父shell和子shell之間的變數傳遞

①如果想在子shell中調用父shell中的變數,在父shell中export變數就行

#!/bin/bashexp8temp="hello shell"echo $exp8temp

 

②如果是想在父shell中調用子shell中的變數,方法有很多,可參考:http://blog.csdn.net/dreamcoding/article/details/8519689/

我的情況比較特殊,是裝置裡啟動並執行參數要在裝置外使用,使用了命令替換和具名管道都不管用,使用中間檔案法可解決。

先把在裝置上啟動並執行參數存在裝置臨時檔案tmp.txt,退出指令碼後,把tmp.txt pull到本地,再在本地 read res < tmp.txt

adb pull /system/plugin/temp.txt .read res < temp.txt

echo $res

很笨的方法,應該有更好的辦法,目前還處於菜鳥層級,希望每天進步一點,以後再回頭來看有無更好解決辦法。。

三、將命令結果存在檔案中
res=`ls | grep appname`echo "$res" > temp.txt
四、查詢到某個進程,並kill掉
ID=`ps | grep "abc" | awk ‘{print $2}‘` echo $ID echo "---------------" for id in $ID do kill -9 $id echo "killed $id" done echo "---------------"

 

菜鳥--shell指令碼編寫之解決問題篇

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.