exist.sh 849 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/bash
  2. # Existence of arg
  3. echo "[exist] Testing existence."
  4. if [ -n $1 ]
  5. then
  6. echo 'Arg 1 exists'
  7. fi
  8. if [ -z $1 ]
  9. then
  10. echo 'Arg 1 does not exist'
  11. fi
  12. # Existence of prompt
  13. read -p 'Type > ' var
  14. if [ -n $var ]
  15. then
  16. echo 'Var exists'
  17. fi
  18. if [ -z $var ]
  19. then
  20. echo 'Var does not exist'
  21. fi
  22. # Existance of nothing
  23. if [ -n $not_declared_variable ]
  24. then
  25. echo 'not_declared_variable exists'
  26. fi
  27. if [ -z $not_declared_variable ]
  28. then
  29. echo 'not_declared_variable does not exist'
  30. fi
  31. # Existance of quoted nothing
  32. if [ -n "$not_declared_quoted_variable" ]
  33. then
  34. echo 'not_declared_quoted_variable exists'
  35. fi
  36. if [ -z "$not_declared_quoted_variable" ]
  37. then
  38. echo 'not_declared_quoted_variable does not exist'
  39. fi
  40. # Existance of void
  41. if [ -n ]
  42. then
  43. echo 'void exists'
  44. fi
  45. if [ -z ]
  46. then
  47. echo 'void does not exist'
  48. fi
  49. echo '[exist] End of script.'