Answers for "bash if exists file wildcard"

0

bash if exists file wildcard

if ls /yourfiles* >/dev/null 2>&1 
	then
    # they are here
fi
Posted by: Guest on April-06-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language