Bash Scripting - Error Handling
What will be the exit code of this script?
#!/bin/bash if [ -f "/tmp/file.txt" ]; then exit 3 else exit 0 fi
#!/bin/bash if [ -f "/tmp/file.txt" ]; then exit 3 else exit 0 fi
-f.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions