execute.sh 191 B

123456789101112131415
  1. #!/bin/bash
  2. if [ "$1" == "copy" ];
  3. then
  4. echo "Argument $1"
  5. sleep 360
  6. echo "SALIO"
  7. else
  8. if [ "$1" == "bash" ];
  9. then
  10. bash
  11. else
  12. sh /opt/script.sh
  13. fi
  14. fi