0
我試圖執行下面的腳本,Case語句沒有顯示任何輸出
data=$(printf "%s " $(find output.log -type f -exec grep 'ACTIVE\| NOT ACTIVE' {} \; | awk '{print $1}'))
status=`find output.log -type f -exec grep 'ACTIVE\| NOT ACTIVE' {} \; | awk '{print $3}'`
case "$data" in
("Instance1")
echo "Status for Instance1 is : $status";
;;
("Instance2")
echo "Status for Instance2 is : $status";
;;
"") echo "empty things"
;;
esac
,但它沒有顯示任何輸出..也許我失去了一些東西在我的腳本(可能很多)
我在上面的腳本中使用的是logfile
即ie。 output.log
,
INSTANCE_NAME OPEN_STATUS STATUS
---------------- ------------ -----------------
Instance1 OPEN ACTIVE
Instance2 OPEN NOT ACTIVE
誰能告訴我上面的腳本有什麼問題嗎?
感謝,
感謝拉傑什編輯它適當的格式 – Mahesh