los-torreros 320 B

1234567891011121314151617
  1. #!/usr/bin/env sh
  2. set -e
  3. missing_program () {
  4. echo "$1 was not found. Exiting."
  5. exit
  6. }
  7. command -v python3 > /dev/null || missing_program "python3"
  8. if command -v rlwrap > /dev/null ; then
  9. rlwrap python3 /usr/local/lib/los-torreros/los-torreros.py
  10. else
  11. python3 /usr/local/lib/los-torreros/los-torreros.py
  12. fi