Bash中判斷一個命令的輸出結果是否為空


如果我們想在Bash中判斷一個命令的輸出結果是否為空,我們可以使用test命令和-z參數。示例代碼如下:

if test -z "$(ls | grep test1.txt)"; then
    echo "The result is empty."
else
    echo "The result is not empty."
fi
 
if test ! -z "$(ls | grep test2.txt)"; then
    echo "The result is not empty."
else
    echo "The result is empty."
fi

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM