test.sh 334 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. echo "[essai] Current directory :"
  3. if [ $# = 0 ]
  4. then
  5. echo 'No argument !!!'
  6. elif [ $# = 1 ]
  7. then
  8. echo "Good thing : $1"
  9. else
  10. echo "Many things : $1, and $2"
  11. fi
  12. # Number process
  13. if [ $1 -lt 21 ]
  14. then
  15. echo "Tiny number"
  16. elif [ $1 -eq 21 ]
  17. then
  18. echo "Perfect !"
  19. else
  20. echo "Pretty big."
  21. fi
  22. echo '[essai] End of script.'