Shell編程-11-子Shell和Shell嵌套

来源:https://www.cnblogs.com/surpassme/archive/2018/11/27/10029758.html
-Advertisement-
Play Games

[TOC] 什麼是子Shell     子Shell的概念其實是貫穿整個Shell的,如果想要更好的理解和寫Shell腳本則必須要瞭解子Shell的相關知識。其概念如下所示: 子Shell本質就是從當前的Shell環境中打開一個新的Shell環境,而新開的Shell稱之為子She ...


目錄

什麼是子Shell

    子Shell的概念其實是貫穿整個Shell的,如果想要更好的理解和寫Shell腳本則必須要瞭解子Shell的相關知識。其概念如下所示:

子Shell本質就是從當前的Shell環境中打開一個新的Shell環境,而新開的Shell稱之為子Shell(SubShell),相應的開啟子Shell的環境稱之為父Shell。子Shell和父Shell是子進程和父進程的關係,而這個進程則全部是bash進程。子Shell可以從父Shell中繼承變數、命令全路徑、文件描述符、當前工作目錄等。在子Shell中常用的兩個變數如下所示:

  • $BASH_SUBSHELL:查看從當前進程開始的子Shell層數
  • $BASHPID:查看當前所處BASH的PID
在Linux系統中,系統運行的程式基本都是從CentOS 6.x(init)或CentOS7.x(systemd)PID為1的進程)繼承而來的,所有的程式都可以看作為init的子進程。
# CentOS 6.x
[root@localhost data]# pstree -hp
init(1)─┬─NetworkManager(3643)
        ├─Xvnc(22811)
        ├─abrtd(4760)
        ├─acpid(3755)
        ├─atd(4801)
        ├─auditd(3392)───{auditd}(3393)
        ├─automount(3849)─┬─{automount}(3850)
        │                 ├─{automount}(3851)
        │                 ├─{automount}(3854)
        │                 └─{automount}(3857)
# CentOS 7.x
[root@localhost ~]# pstree -hp
systemd(1)─┬─ModemManager(1051)─┬─{ModemManager}(1068)
           │                    └─{ModemManager}(1076)
           ├─Xvnc(5563)─┬─{Xvnc}(5566)
           │            ├─{Xvnc}(5567)
           │            ├─{Xvnc}(5568)

子Shell產生的途徑

通過後臺作業:&

[root@localhost Test]# cat jobs.sh
#!/bin/bash
parentShell="ParentShell"
echo "Parent Shell start and Level:"$BASH_SUBSHELL
# define subshell
{
 echo "SubShell start and Level:"$BASH_SUBSHELL
 subShell="SubShell"
 echo "SubShell value: ${subShell}"
 echo "parentShell value: ${parentShell}"
# sleep 5
 echo "SubShell end and Level: $BASH_SUBSHELL "
} & # running in backgroud
echo "Parent end and Level:$BASH_SUBSHELL"

if [ -z "${subShell}" ]
  then
    echo "subShell is not defined in ParentShell"
else
  echo "subShell is defined in ParentShel"
fi
[root@localhost Test]# bash jobs.sh
Parent Shell start and Level:0
Parent end and Level:0
subShell is not defined in ParentShell
SubShell start and Level:1
SubShell value: SubShell
parentShell value: ParentShell
SubShell end and Level: 1

根據運行結果,結論如下所示:

  • 在Shell中可以使用&產生子Shell
  • &產生的子Shell可以直接引用父Shell的變數,而子Shell產生的變數不能被父Shell引用
  • 在Shell中使用&可以實現多線程併發

通過管道:|

[root@localhost Test]# cat jobs.sh
#!/bin/bash
parentShell="ParentShell"
echo "Parent Shell start and Level:"$BASH_SUBSHELL
# define subshell
echo "" |  # 管道
{
 echo "SubShell start and Level:"$BASH_SUBSHELL
 subShell="SubShell"
 echo "SubShell value: ${subShell}"
 echo "parentShell value: ${parentShell}"
# sleep 5
 echo "SubShell end and Level: $BASH_SUBSHELL "
}
echo "Parent end and Level:$BASH_SUBSHELL"

if [ -z "${subShell}" ]
  then
    echo "subShell is not defined in ParentShell"
else
  echo "subShell is defined in ParentShel"
fi
[root@localhost Test]# bash jobs.sh
Parent Shell start and Level:0
SubShell start and Level:1
SubShell value: SubShell
parentShell value: ParentShell
SubShell end and Level: 1
Parent end and Level:0
subShell is not defined in ParentShell

根據運行結果,結論如下所示:

  • 在Shell中可以使用管道產生子Shell
  • 管道產生的子Shell可以直接引用父Shell的變數,而子Shell產生的變數不能被父Shell引用
  • 管道產生的Shell是順序執行的,僅能在子Shell執行完成後才能返回父Shell中繼續執行,這一點也是與&最大的區別。

通過()

[root@localhost Test]# cat jobs.sh
#!/bin/bash
parentShell="ParentShell"
echo "Parent Shell start and Level:"$BASH_SUBSHELL
# define subshell
(
 echo "SubShell start and Level:"$BASH_SUBSHELL
 subShell="SubShell"
 echo "SubShell value: ${subShell}"
 echo "parentShell value: ${parentShell}"
# sleep 5
 echo "SubShell end and Level: $BASH_SUBSHELL "
)
echo "Parent end and Level:$BASH_SUBSHELL"

if [ -z "${subShell}" ]
  then
    echo "subShell is not defined in ParentShell"
else
  echo "subShell is defined in ParentShel"
fi
[root@localhost Test]# bash jobs.sh
Parent Shell start and Level:0
SubShell start and Level:1
SubShell value: SubShell
parentShell value: ParentShell
SubShell end and Level: 1
Parent end and Level:0
subShell is not defined in ParentShell

根據運行結果,結論如下所示:

  • 在Shell中可以使用()產生子Shell
  • ()產生的子Shell可以直接引用父Shell的變數,而子Shell產生的變數不能被父Shell引用
  • ()產生的Shell是順序執行的,僅能在子Shell執行完成後才能返回父Shell中繼續執行,

看到這個結果,大家會不會覺得使用()跟使用管道一樣的?

通過調用外部Shell

[root@localhost Test]# cat subShell.sh parentShell.sh  -n
       # SubShell
     1  #!/bin/bash
     2   echo "SubShell start and Level:"$BASH_SUBSHELL
     3   subShell="SubShell"
     4   echo "SubShell value: ${subShell}"
     5   echo "parentShell value: ${parentShell}"
     6   echo "parentExportShell value: ${parentExportShell}"
     7   if [ -z "${parentShell}"  ];then
     8      echo "parentShell value is : null"
     9   else
    10      echo "parentShell value is : "${parentShell}
    11   fi
    12
    13  # ParentShell
    14  #!/bin/bash
    15  parentShell="Parent"
    16  export parentExportShell="parentExportShell"
    17  echo "Parent Shell start and Level:"$BASH_SUBSHELL
    18  bash ./subShell.sh # invoke subshell
    19  sleep 3
    20  echo "Parent Shell end and Level:"$BASH_SUBSHELL
    21  if [ -z "${subShell}" ]
    22    then
    23     echo "subShell is not defined in ParentShell"
    24  else
    25     echo "subShell is defined in ParentShell"
    26  fi
[root@localhost Test]# bash parentShell.sh
Parent Shell start and Level:0
SubShell start and Level:0
SubShell value: SubShell
parentShell value:
parentExportShell value: parentExportShell
parentShell value is : null
Parent Shell end and Level:0
subShell is not defined in ParentShell

根據運行結果,結論如下所示:

  • 在Shell中可以通過外部Shell腳本產生子Shell
  • 在調用外部Shell時,父Shell定義的變數不能被子Shell繼承,如果要繼承父Shell的變數,必須使用export使其成為全局環境變數。
  • 調用外部Shell產生的Shell是順序執行的,僅能在子Shell執行完成後才能返回父Shell中繼續執行,

Shell腳本調用模式

    通常在大型的項目中,都會將較大模塊進行拆分為多個小模塊進行代碼編寫調試等。因此在一個Shell腳本中也不可能包含所有模塊,一般都採用在一個腳本中去調用當前用到的腳本,這種被稱之為Shell嵌套。在一個腳本中嵌套腳本的方式主要有forkexecsource

fork模式調用腳本

    fork模式是最普通的腳本調用方式。在使用該方式調用腳本時,系統會創建一個子Shell去調用腳本。其調用方式如下所示:

/bin/bash /path/shellscript.sh # 未給腳本添加執行許可權時
或
/path/shellscript.sh # 腳本擁有執行許可權時

fork本質是複製進程。使用該方式時,fork會複製當前進程做為一個副本,而後將這些資源交給子進程。因此子進程會繼承父進程的一些資源,如環境變數、變數等。而父進程卻是完全獨立的,子進程和父進程相當於面向對象中一個對象的兩個實例。

exec模式調用腳本

    exec調用腳本時,不會開啟一個新的子Shell來進行調用腳本,被調用的腳本和調用腳本在同一個Shell內執行。但需要註意的是使用exec調用新腳本後,在執行完新腳本的內容後,不再返回到調用腳本中執行後續未執行的內容,這也是與fork調用腳本的主要區別。其主要調用方式如下所示:

exec /path/shellscript.sh

exec的本質是載入另外一個程式來代替當前運行的進程。即在不創建新進程的情況下去載入一個新程式,而在進程執行完成後就直接退出exec所在的Shell環境。

source模式調用腳本

    source調用腳本時,也不會開啟一個新的子Shell來執行被調用的腳本,同樣也是在同一個Shell中執行,因此被調用腳本是可以繼承調用腳本的變數、環境變數等。與exec調用方式的區別是,source在執行完被調用腳本的內容後,依然會返回調用腳本中,去執行調用腳本中未執行的內容。其主要調用方式如下所示:

source /path/shellscript.sh
或
. /path/shellscript.sh  # .和source是等價的

三種調用模式示例

    示例代碼如下所示:

[root@localhost Test]# cat -n subShell.sh parentShell.sh
     1  #!/bin/bash
     2   echo "SubShell start and Level:"$BASH_SUBSHELL
     3   echo "SubShell PID is:" $$
     4   subShell="SubShell"
     5   echo "SubShell value: ${subShell}"
     6   echo "parentShell value: ${parentShell}"
     7   echo "parentExportShell value: ${parentExportShell}"
     8   if [ -z "${parentShell}"  ];then
     9      echo "parentShell value is : null"
    10   else
    11      echo "parentShell value is : "${parentShell}
    12   fi
    13  #!/bin/bash
    14  # print usage
    15  function Usage() {
    16    echo "Usage:$0 {fork|exec|source}"
    17    exit 1
    18  }
    19  # print return variable
    20  function PrintPara() {
    21   if [ -z "${subShell}" ]
    22    then
    23     echo "subShell is not defined in ParentShell"
    24   else
    25     echo "subShell is defined in ParentShell "${subShell}
    26   fi
    27  }
    28  # invoke pattern
    29  function ParentFunction() {
    30    parentShell="Parent"
    31    export parentExportShell="parentExportShell"
    32    echo "Parent Shell start and Level:"$BASH_SUBSHELL
    33    echo "Parent PID is:"$$
    34    case "$1" in
    35      fork)
    36         echo "Using fork pattern"
    37         /bin/bash ./subShell.sh
    38         PrintPara ;;
    39      exec)
    40         echo "Using exec pattern"
    41         exec ./subShell.sh
    42         PrintPara ;;
    43      source)
    44         echo "Using source pattern"
    45         source ./subShell.sh
    46         PrintPara ;;
    47      *)
    48        echo "Input error ,usage is:" Usage
    49     esac
    50  }
    51  # check parameter number
    52  function CheckInputPara() {
    53    if [ $# -ne 1 ]
    54      then
    55        Usage
    56    fi
    57    ParentFunction $*
    58  }
    59  CheckInputPara $*

1、fork調用結果:

[root@localhost Test]# bash parentShell.sh fork
Parent Shell start and Level:0
Parent PID is:26413
Using fork pattern
SubShell start and Level:0
SubShell PID is: 26414
SubShell value: SubShell
parentShell value:
parentExportShell value: parentExportShell
parentShell value is : null
subShell is not defined in ParentShell

1、父Shell和子Shell的PID不一樣,則可以說明產生了新的子進程
2、調用腳本中定義的全局變數可以傳入到被調用腳本,而被調用的腳本中定義的變數是無法返回到調用腳本中的

2、exec調用結果:

[root@localhost Test]# chmod +x subShell.sh
[root@localhost Test]# bash parentShell.sh exec
Parent Shell start and Level:0
Parent PID is:25543
Using exec pattern
SubShell start and Level:0
SubShell PID is: 25543
SubShell value: SubShell
parentShell value:
parentExportShell value: parentExportShell
parentShell value is : null

1、父Shell和子Shell的PID一樣,則可以說明未產生新的子進程
2、調用腳本中定義的全局變數可以傳入到被調用腳本
3、最重要的一點就是在執行完被調用腳本後直接退出Shell了,而調用腳本未執行的內容並沒有被執行

3、source調用結果:

[root@localhost Test]# bash parentShell.sh source
Parent Shell start and Level:0
Parent PID is:19955
Using source pattern
SubShell start and Level:0
SubShell PID is: 19955
SubShell value: SubShell
parentShell value: Parent
parentExportShell value: parentExportShell
parentShell value is : Parent
subShell is defined in ParentShell: SubShell

1、父Shell和子Shell的PID一樣,則可以說明未產生新的子進程
2、調用腳本中定義的普通變數和全局變數可以傳入到被調用腳本,反之亦然
3、最重要的一點就是在執行完被調用腳本後返回調用腳本中繼續執行剩下的內容

三種調用模式使用場景

  • 1、fork模式使用場景

fork模式常用於常規嵌套腳本執行的場景中,僅僅是執行嵌套腳本中命令,調用腳本也不需要使用被調用腳本中的變數和函數等信息。

  • 2、exec模式使用場景

exec模式常用於調用腳本中末尾中。而這種模式在執行完被調用腳本中就直接退出,因此使用較少,可使用source代替exec

  • 3、source模式使用場景

source模式算是在Shell常用的一種腳本嵌套調用模式,常用於執行嵌套腳本啟動一些服務程式等,其最大的優點就是嵌套腳本中定義的變數和函數等資源可以被調用腳本獲取和使用。

本文同步在微信訂閱號上發佈,如各位小伙伴們喜歡我的文章,也可以關註我的微信訂閱號:woaitest,或掃描下麵的二維碼添加關註:
MyQRCode.jpg


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 非泛型集合的類和介面位於System.Collections命名空間 如:列表、隊列、位數組、哈希表和字典的集合 ArrayList 動態數組 可被單獨索引的對象的有序集合可以使用索引在指定的位置添加和移除項目,動態數組會自動重新調整它的大小允許在列表中進行動態記憶體分配、增加、搜索、排序 Capac ...
  • 前幾天我寫了一個UWP圖片裁剪控制項ImageCropper( "開源地址" ),自認為算是現階段UWP社區里最好用的圖片裁剪控制項了,今天就來分享下我編碼的過程。 為什麼又要造輪子 因為開發需要,我們需要使用一個圖片裁剪控制項來編輯用戶上傳的圖片。本著儘量不重覆造輪子的原則,我找了下現在UWP生態圈裡可 ...
  • 找了幾種繪製圖表的辦法,後面選定了ECharts 首先,從NuGet管理中添加ECharts包,然後就可以調用繪製圖表啦! 基本步驟: 1.為ECharts準備一個具備大小(寬高)的Dom 2.ECharts的js文件引入 3.js中為模塊載入器配置echarts和所需圖表的路徑 require.c ...
  • OrchardCore 通過將服務和中間件放在不同的程式集以支持模塊化。各個模塊提供類似於 ConfigureServices 和 Configure 的方法供運行時調用。 ...
  • 近來在考慮一個服務選型,dotnet提供了眾多的遠程服務形式。在只考慮dotnet到dotnet的情形下,我們可以選擇remoting、WCF(http)、WCF(tcp)、WCF(RESTful)、asp.net core(RESTful)其中我考察的重點是前4項的效率差異,而在我的測試項目中他們 ...
  • 1、Autofac IOC 容器 ,便於在其他類獲取註入的對象 2、用nuget安裝 using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; 3、Program類如下 4、用容 ...
  • C# -- 索引器、枚舉類型 索引器允許類或結構的實例就像數組一樣進行索引。 無需顯式指定類型或實例成員,即可設置或檢索索引值。 索引器類似於屬性,不同之處在於它們的訪問器需要使用參數。 1. 索引器 運行結果: 2. 枚舉類型 枚舉類型是包含一組已命名常量的獨特值類型。 需要定義包含一組離散值的類 ...
  • GridView內CheckBox控制項全選設置 不需要添加後台代碼操作,前端即可完成設置,如下: 前端代碼: 1.設置javascript。 <html xmlns="http://www.w3.org/1999/xhtml" > <script type="text/javascript"> fu ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...