如何「回顯」在 shell 腳本中的另一個函數中宣告/初始化的變數?

如何「回顯」在 shell 腳本中的另一個函數中宣告/初始化的變數?

在 Ubuntu 14.04.1 中運行:

./script.sh MyVM take

為什麼echo函數中的行可以list_snapshot工作(它列印這 3 個變數的值),但行echo中的行take_snapshot無法列印變數的值$output$old_snapshot_name而只能列印 的值$machine_name

請注意,該腳本在我運行時起作用./script.sh MyVM take,它確實刪除舊快照並創建新快照。

#! /bin/sh

if [ ! "$1" ]; then
    echo "Usage: $0 <vmname> list|take"
    exit 1
else
    machine_name=$1
fi

list_snapshot () {
    output=$(VBoxManage snapshot "$machine_name" list)
    count=$(echo "$output" | grep -c 'UUID')

    echo "Machine '$machine_name' has '$count' snapshots: \n '$output'"
    return "$count"
}


take_snapshot () {
    echo "$output"
    while (list_snapshot; [ $? -gt 3 ])  
    do
        old_snapshot_name=$(echo "$output" | grep -o 'UUID: (.{36})' | head -1)
        echo "Deleting old snapshot '$old_snapshot_name' for machine '$machine_name'..."

        VBoxManage snapshot "$machine_name" delete "$old_snapshot_name"

    done

    current_time=$(date "+%Y.%m.%d-%H.%M.%S")
    snapshot_name=$machine_name.$current_time

    echo "Taking new snapshot '$snapshot_name' for machine '$machine_name'..."
    VBoxManage snapshot "$machine_name" take "$snapshot_name" --live 
}

case "$2" in
  list)
    list_snapshot
    ;;
  take)
    take_snapshot
    ;;
  *)
    echo "Usage: $0 <vmname> list|take"
    exit 1
    ;;
esac

輸出無-x./snapshotVM.sh RancherOS-tools take

Machine 'RancherOS-tools' has '4' snapshots: 
 '   Name: RancherOS-tools.2015.11.03-11.25.12 (UUID: 7afef8ee-1915-4494-9634-add82e1a613f)
      Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
         Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
            Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051) *'
Deleting old snapshot '' for machine 'RancherOS-tools'...
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Machine 'RancherOS-tools' has '3' snapshots: 
 '   Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
      Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
         Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051) *'
Taking new snapshot 'RancherOS-tools.2015.11.03-11.35.20' for machine 'RancherOS-tools'...
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Snapshot taken. UUID: 5195881b-113b-448a-81e3-98a121c8fbfe

輸出為-x./snapshotVM.sh RancherOS-tools take

dy@dy:~$ ./snapshotVM.sh RancherOS-tools take
+ [ ! RancherOS-tools ]
+ machine_name=RancherOS-tools
+ take_snapshot
+ echo 

+ list_snapshot
+ VBoxManage snapshot RancherOS-tools list
+ output=   Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
      Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
         Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
            Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *
+ echo    Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
      Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
         Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
            Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *
+ grep -c UUID
+ count=4
+ echo Machine 'RancherOS-tools' has '4' snapshots: \n '   Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
      Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
         Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
            Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *'
Machine 'RancherOS-tools' has '4' snapshots: 
 '   Name: RancherOS-tools.2015.11.03-11.25.40 (UUID: 79a53543-377e-4a74-80ca-751883a7787b)
      Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
         Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
            Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *'
+ return 4
+ [ 4 -gt 3 ]
+ echo 
+ head -1
+ grep -o UUID: (.{36})
+ old_snapshot_name=
+ echo Deleting old snapshot '' for machine 'RancherOS-tools'...
Deleting old snapshot '' for machine 'RancherOS-tools'...
+ VBoxManage snapshot RancherOS-tools delete 
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
+ list_snapshot
+ VBoxManage snapshot RancherOS-tools list
+ output=   Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
      Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
         Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *
+ echo    Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
      Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
         Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *
+ grep -c UUID
+ count=3
+ echo Machine 'RancherOS-tools' has '3' snapshots: \n '   Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
      Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
         Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *'
Machine 'RancherOS-tools' has '3' snapshots: 
 '   Name: RancherOS-tools.2015.11.03-11.32.10 (UUID: 25a942fe-2d0a-4290-a98e-7d16ec4c60bd)
      Name: RancherOS-tools.2015.11.03-11.34.58 (UUID: 02af926b-396c-4ce6-bfb3-5e953de5a051)
         Name: RancherOS-tools.2015.11.03-11.35.20 (UUID: 5195881b-113b-448a-81e3-98a121c8fbfe) *'
+ return 3
+ [ 3 -gt 3 ]
+ date +%Y.%m.%d-%H.%M.%S
+ current_time=2015.11.03-11.37.46
+ snapshot_name=RancherOS-tools.2015.11.03-11.37.46
+ echo Taking new snapshot 'RancherOS-tools.2015.11.03-11.37.46' for machine 'RancherOS-tools'...
Taking new snapshot 'RancherOS-tools.2015.11.03-11.37.46' for machine 'RancherOS-tools'...
+ VBoxManage snapshot RancherOS-tools take RancherOS-tools.2015.11.03-11.37.46 --live
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Snapshot taken. UUID: 0e11c8d0-130c-4508-a2be-8692fc9316bd

更新:看起來我遇到了一些變數範圍問題,重新設計我的程式碼後,刪除 while 循環,現在它可以工作了

#! /bin/sh

# usage: 
# $0 <vmname> list : list all snapshot
# $0 <vmname> take : delete old snapshot name startwith "Backup" and leave 3 "Backup" snapshot

#set -x

if [ ! "$1" ]; then
    echo "Usage: $0 <vmname> list|take"
    exit 1
else
    machine_name=$1
fi

list_snapshot () {
    output=$(VBoxManage snapshot "$machine_name" list)
    count=$(echo "$output" | grep -c 'UUID')

    echo "Machine $machine_name has $count snapshots: "
    echo "$output"
}


take_snapshot () {
    output=$(VBoxManage snapshot "$machine_name" list)
    count=$(echo "$output" | grep -c 'Backup')

    echo "Machine $machine_name has $count snapshots: "
    echo "$output"

    if [ "$count" -ge 3 ]; then
        old_snapshots_uuid=$(echo "$output" | grep "Backup" | grep -Eo 'UUID: .{36}' | cut -c 7-42 | head -$((count-2)))

        for u in $old_snapshots_uuid; do
          echo "Deleting old snapshot $u for machine $machine_name..."
          VBoxManage snapshot "$machine_name" delete "$u"
        done    
    fi

    current_time=$(date "+%Y.%m.%d-%H.%M.%S")
    snapshot_name="Backup".$machine_name.$current_time

    echo "Taking new snapshot $snapshot_name for machine $machine_name..."
    VBoxManage snapshot "$machine_name" take "$snapshot_name"     
}

case "$2" in
  list)
    list_snapshot
    ;;
  take)
    take_snapshot
    ;;
  *)
    echo "Usage: $0 <vmname> list|take"
    exit 1
    ;;
esac

答案1

你不能;在函數中宣告/初始化的變數僅在該函數的作用域中可見。

另外,在您的具體情況下,如果您運行./script.sh MyVM takelist_snapshot()則甚至不會運行;應該如何output聲明/初始化(以及old_snapshot_name應該如何聲明/初始化,因為它的聲明/初始化依賴於output尚未聲明/初始化的 ?)

要使output所有函數可見並且無論實際運行哪些函數,請將其聲明/初始化移到 的外部list_snapshot(),例如在take_snapshot()的定義之後:

#! /bin/sh

if [ ! "$1" ]; then
    echo "Usage: $0 <vmname> list|take"
    exit 1
else
    machine_name=$1
fi

list_snapshot () {
    count=$(echo "$output" | grep -c 'UUID')

    echo "Machine '$machine_name' has '$count' snapshots: \n '$output'"
    return "$count"
}


take_snapshot () {
    echo "$output"
    while (list_snapshot; [ $? -gt 3 ])  
    do
        old_snapshot_name=$(echo "$output" | grep -o 'UUID: (.{36})' | head -1)
        echo "Deleting old snapshot '$old_snapshot_name' for machine '$machine_name'..."

        VBoxManage snapshot "$machine_name" delete "$old_snapshot_name"

    done

    current_time=$(date "+%Y.%m.%d-%H.%M.%S")
    snapshot_name=$machine_name.$current_time

    echo "Taking new snapshot '$snapshot_name' for machine '$machine_name'..."
    VBoxManage snapshot "$machine_name" take "$snapshot_name" --live 
}

output=$(VBoxManage snapshot "$machine_name" list)

case "$2" in
  list)
    list_snapshot
    ;;
  take)
    take_snapshot
    ;;
  *)
    echo "Usage: $0 <vmname> list|take"
    exit 1
    ;;
esac

相關內容