Pertimbangkan kode berikut outer-scope.sh #!/bin/bash set -e source inner-scope.sh echo $(inner) echo "I thought I would've died :(" inner-scope.sh #!/bin/bash function inner() { echo "winner"; return 1; } Saya mencoba outer-scope.shkeluar ketika ada panggilan inner()gagal. Karena $()memanggil...