我有一個腳本,確定模塊負載狀態。確定模塊負載狀態
在下面的代碼第4行中,它給我錯誤的是,它不能加載特定的版本比我檢查狀態後。理想情況下,我應該得到1作爲一個地位,但它仍然是零。
然後我有一個命令行還要檢查。像module load her/2012;echo $status
。
我不明白爲什麼我會得到更具體的問題狀態碼0,我怎麼能確定模塊加載命令的狀態
1 #!/bin/csh -fe
2 source /global/etc/csh.cshrc
3 module unload hercules
4 module load hercules/2012
5 if ($status != 0) then
6 echo "Error: abhishek Unable to execute module load hercules/2012"
7 exit
8 endif