我希望有人可以幫助將db2命令的輸出應用於一個變量,以便稍後在腳本中使用。 到目前爲止,我在... db2 "connect to <database> user <username> using <password>"
while read HowMany ;
do
Counter=$HowMany
echo $HowMany
done < <(db2 -x "SEL
我試圖理解爲什麼每當我使用function 2>&1 | tee -a $LOG tee創建一個子shell的功能,不能退出簡單exit 1(如果我不使用tee它工作正常)。下面的例子: #!/bin/bash
LOG=/root/log.log
function first()
{
echo "Function 1 - I WANT to see this."
exit 1
}