Cleaning, and build tools

This commit is contained in:
Thomas FORGIONE
2015-06-30 15:13:49 +02:00
parent 5259a8feea
commit 09b8dad62b
12 changed files with 831 additions and 28 deletions

View File

@@ -0,0 +1,26 @@
#!/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
if [ -z "$output" ]; then
cat $args
else
cat $args > $output
fi