Answers for "sh or bash validate if file no exist"

0

sh or bash validate if file no exist

FILE=/etc/docker
if [ ! -f "$FILE" ]; then
    echo "$FILE does not exist."
fi
Posted by: Guest on April-22-2021

Code answers related to "sh or bash validate if file no exist"

Browse Popular Code Answers by Language