shell script 中取得前一個指令的輸出內容 Posted on 2023 年 11 月 28 日 By 日落 在〈shell script 中取得前一個指令的輸出內容〉中尚無留言 假設要將 ls 的結果儲存到變數中,則可用下面的語法: # 將結果儲存到 $OUTPUT 中 OUTPUT=$( ls / ) echo $OUTPUT 如果要將 stderr 也儲存下來,則加上 redirect: OUTPUT=$( ls /not/exists 2>&1 ) Tags:Bash, Linux, shellscript