Differences between revisions 3 and 4
Revision 3 as of 2023-01-20 17:28:27
Size: 394
Comment:
Revision 4 as of 2023-01-20 17:34:47
Size: 800
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
  :
elif [ TEST ]; then
  :
  echo "TEST is true"
elif grep /path/to/file --fixed-strings foo >/dev/null; then
  echo "TEST is false and '/path/to/file' contains 'foo'"
Line 17: Line 17:
  :   echo "TEST is false and '/path/to/file' does not contain 'foo'"
Line 20: Line 20:

[[Shell/Test|Shell tests]] are typically used as the condition (as seen above), but any command that sets the exit code in the expected pattern (zero for true, non-zero for false; as seen above with `grep(1)`) can be used.
Line 36: Line 38:
    echo "Please enter y or n"     echo "Please enter y or n only"

Shell Logic


Conditional Logic

if [ TEST ]; then
  echo "TEST is true"
elif grep /path/to/file --fixed-strings foo >/dev/null; then
  echo "TEST is false and '/path/to/file' contains 'foo'"
else
  echo "TEST is false and '/path/to/file' does not contain 'foo'"
fi

Shell tests are typically used as the condition (as seen above), but any command that sets the exit code in the expected pattern (zero for true, non-zero for false; as seen above with grep(1)) can be used.


Case Switching Logic

case $INPUT_STRING in
  y)
    echo "Proceeding..."
    ;;
  n)
    echo "Quitting..."
    ;;
  *)
    echo "Please enter y or n only"
    ;;
esac


CategoryRicottone

Shell/Logic (last edited 2023-01-20 22:05:53 by DominicRicottone)