これは前のコマンドの状態を提供することを知っていますが、特定のコマンド$?
の状態をどのように取得できますか?
rsync -avh -r /Source/ /Destination/
folderParam=$(basename !:3)
//commandResultvar : here I want to store status of rsync command
ベストアンサー1
rsync -avh -r /Source/ /Destination/
rsync_status=$?
folderParam=$(basename !:3)
# use ${rsync_status} here...