mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 17:19:44 +02:00
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
T="TEST"
|
|
F=6
|
|
if [ "$1" = -g ]; then
|
|
shift
|
|
./txt2xbm "$T" | ./stretch $F | ./xbm2gp "$@" | ./plot
|
|
else
|
|
./txt2xbm "$T" | ./stretch $F | ./xbm2tornado
|
|
fi
|