runme_jar.sh ``` #!/bin/bash for f in *.jar; do jarfile=$f done echo Running java file $jarfile... java -Dfile.encoding="UTF-8" -jar $jarfile ```