3d-interface/js/compiler.sh

23 lines
273 B
Bash
Raw Normal View History

2015-05-27 11:02:51 +02:00
#!/usr/bin/bash
args=""
while [[ $# > 0 ]]; do
key="$1"
case $key in
--js) args="$args $2"
shift
;;
--js_output_file)
output="$2"
shift
;;
esac
shift
done
cat $args > $output