launch.sh
Doğru sahibi ile dosya oluşturmak için kendini başka bir kullanıcı olarak yürüten bir komut dosyası var. Eğer asıl betiğe geçirilmişse bu çağrıyı -x iletmek istiyorum
if [ `whoami` == "deployuser" ]; then
... bunch of commands that need files to be created as deployuser
else
echo "Respawning myself as the deployment user... #Inception"
echo "Called with: <$BASH_ARGV>, <$BASH_EXECUTION_STRING>, <$->"
sudo -u deployuser -H bash $0 "$@" # How to pass -x here if it was passed to the script initially?
fi
Bash hata ayıklama sayfasını okudum ama orijinal komut dosyasının başlatılıp başlatılmadığını söyleyen net bir seçenek yok gibi görünüyor -x
.
[[ $- == *x* ]]
Kalıp eşleşmesi için kullanmanız gerekir .