老男孩教育每日一題-2017-04-25:怎樣產生一個子shell?

來源:互聯網
上載者:User

標籤:子shell   shell   每日一題   

1、在父shell中執行一個shell指令碼,可以產生一個子shell

 測試環境:

定義一個變數並輸出

[[email protected] ~]$ STR=123[[email protected] ~]$ echo $STR123

 編寫測試指令碼並執行

[

[email protected] ~]$ cat test.sh#!/bin/bashecho $STR[[email protected] ~]$ ./test.sh [[email protected] ~]$ export STR[[email protected] ~]$ ./test.sh123

 子shell不能直接使用父shell中定義的變數,需export提升為環境變數

  

2、在父shell中執行一條命令,在命令的末尾加上&  可以產生一個子shell

 

[[email protected] ~]$ STR=123;STR=abc[[email protected] ~]$ echo $STRabc[[email protected] ~]$ STR=123;STR=abc&[1] 16467[[email protected] ~]$ echo $STR123[1]+ Done                    STR=abc

 

定義一個變數STR賦值123,重新賦值abc,結果變數STR的值為abc,當把第二次賦值末尾加上&,變數STR的值沒有變,說明第二次賦值沒有 在當前shell,而是開啟了一個子shell

  

3、使用()可以產生一個子shell

[[email protected] ~]$ STR=123&& (STR=abc) && echo $STR123

 同上面案例,()中變數賦值不能修改之前變數的值,也產生了子shell

  4、在父shell中執行帶管道的命令

[[email protected] ~]$STR=123|STR=456;echo $STR                 123

 列印子shell中的變數

[[email protected] ~]$ STR=123|{STR=456;echo $STR; }456

今天是每日一題陪伴大家的第35天,期待你的進步。

對於題目和答案的任何疑問,請在部落格評論區留言。

往期題目索引

http://lidao.blog.51cto.com/3388056/1914205



本文出自 “李導的部落格” 部落格,請務必保留此出處http://lidao.blog.51cto.com/3388056/1919355

老男孩教育每日一題-2017-04-25:怎樣產生一個子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.