Basic Shell Scripting - 2
Other If Statement
If the output is either Monday or Tuesday
if [ "$a" = Monday ] || [ "$a" = Tuesday ]
Test if the error.txt file exist and its size is greater than zero
if [ $? -eq 0 ] // If input is equal to zero (0)
if [ -e /export/home/...
shounakkhulape.hashnode.dev5 min read