Compgen

From UVOO Tech Wiki
Revision as of 19:02, 22 November 2022 by Busk (talk | contribs) (Created page with "``` if compgen -G "${PROJECT_DIR}/*.png" > /dev/null; then echo "pattern exists!" fi ``` https://stackoverflow.com/questions/6363441/check-if-a-file-exists-with-a-wildcar...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
if compgen -G "${PROJECT_DIR}/*.png" > /dev/null; then
    echo "pattern exists!"
fi

https://stackoverflow.com/questions/6363441/check-if-a-file-exists-with-a-wildcard-in-a-shell-script