請問一下各位大大
小弟寫了一個小程式
目的是星期六,日不關機
其他時間凌晨五點關機
程式如下
#!/bin/bash
today=`date +%a`
if [ "$today" != Sat ] && [ "$today" != Sun ] ;
then `shutdown -h 05:00 >/dev/null &` ; fi
SHT="This Server will Shutdown at 05:00 o'colck"
export SHT
這時候發現一個問題
雖然程式裡面已經下了export SHT
但是事實上
我直接下達export -p,set或env
並沒有看到SHT的變數
請問我該怎麼做
才可以讓變數宣告成整體變數..