Advertisement
Guest User

COVID-19_CARES

a guest
Mar 29th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. TAX_RETURN="$1"
  4. AGI="$2"
  5.  
  6. for AGI in $TAX_RETURN;
  7. do
  8.  if [[ "$TAX_RETURN" ]] && [[ "$AGI" -lt 150,000 ]]
  9.  then
  10.   echo "Get the CARES stimulus package!"
  11.  else
  12.   echo "Finish your taxes to be eligible"
  13.    if [[ "$AGI" -gt 150,000 ]]
  14.     then
  15.      echo "You make too much money for the CARES stimulus package."
  16.    fi
  17.  fi
  18. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement