JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
run.sh: complain if not passed width/height
[watch-my-terminal.git] / run.sh
1 #!/bin/bash
2
3 # run from source directory
4 if [ -z "$1" -o -z "$2" ]; then
5         echo "USAGE: $0 \$COLUMNS \$LINES" >&2
6         exit 1
7 fi
8
9 script -f >(coffee server.coffee "$@" >log.txt 2>&1)