Facebook
From Mika, 4 Years ago, written in Scala.
Embed
Download Paste or View Raw
Hits: 505
  1. #!/bin/bash
  2.  
  3. argument=$1
  4.  
  5. if [[ $argument == *.sh ]]
  6. then
  7.     #Is a script file, execute script
  8.     cmd=$argument
  9. elif [[ $argument == *.p8 || $argument == *.png ]]
  10. then
  11.     #Is a game image, start the game. But need to escape string first
  12.     #List of charaters to be escaped
  13.     characters=("\'" "\ " "\(" "\)")
  14.  
  15.  
  16.     #Start escaping string
  17.     for item in "${characters[@]}"
  18.     do
  19.         argument=${argument//$item/"$item"}
  20.     done
  21.    
  22.     cmd="/home/pi/pico-8/pico8 -run $argument"
  23.     #unsupported file format
  24.     exit
  25. fi
  26.  
  27. /opt/retropie/supplementary/runcommand/runcommand.sh 0 "$cmd"
  28.  
  29.