Shell debug功能

Shell debug功能

Shell debug功能

Shell debug功能,範例如下:

debug.sh

#!/bin/bash

#Filename: debug.sh

for i in {1..6};

do

set -x

     echo $i

set +x

done

echo “Script executed”

 

參考出處:Linux Shell 腳本攻略 P 22

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *