Which command is being run in this script to check if file.txt exists?
if [ -f file.txt ]; then
echo "file.txt exists"
fi
Which command is being run in this script to check if file.txt exists?
if [ -f file.txt ]; then
echo "file.txt exists"
fi