blob: ff6264a1031c4b4690225430b19204abe1aee24f (
plain) (
blame)
1
2
3
4
5
6
|
#!/usr/bin/env bash
if [ "_$1" = "_" ];then
echo "I need an argument for what my backend is." >&2
exit 1
fi
cat camera.pos <(stdbuf -oL $1 < p | ./list_to_cubes.sh) | hackvr USER | ./action_to_target.sh > p
|