diff options
author | epoch <epoch@hacking.allowed.org> | 2019-02-05 21:48:29 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2019-02-05 21:48:29 -0600 |
commit | 420eeee620a287ac5bf133f8a17329a7182d5bbf (patch) | |
tree | 407cd59748e0e5ef4f88b15305dd303aa64cf8da /bin/line2hackvr.sh | |
parent | 848a823b1287d8804e8d6170c3ca30ccf7689784 (diff) | |
download | hackvr-420eeee620a287ac5bf133f8a17329a7182d5bbf.tar.gz hackvr-420eeee620a287ac5bf133f8a17329a7182d5bbf.zip |
forgot to add bin dir that contains a LOT of the handy stuff
Diffstat (limited to 'bin/line2hackvr.sh')
-rwxr-xr-x | bin/line2hackvr.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/line2hackvr.sh b/bin/line2hackvr.sh new file mode 100755 index 0000000..7128026 --- /dev/null +++ b/bin/line2hackvr.sh @@ -0,0 +1,12 @@ +#!/bin/sh +#this is used on turn2line output +USAGE="usage: line2hackvr.sh name < turn2line-output" +if [ "_$1" = '_' ];then + echo $USAGE >&2 + exit 1 +fi +if [ "_$1" = "_-h" -o "_$1" = "_--help" -o "_$1" = "_-help" ];then + echo $USAGE + exit 0 +fi +xargs -L 1 printf "%s addshape 2 2 0 %d %d 0 %d %d\n" "$1" $line |