summaryrefslogtreecommitdiff
path: root/optcvt.sh
blob: 2f3f89c479baa5682df0d78409e639f2a6db7e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
TCVT=./tcvt.py
MINWIDTH=80

SIZE=`stty size`
test $? = 0 || exit $?
COLUMNS="${SIZE#* }"

if test "$COLUMNS" -ge $((2*$MINWIDTH+1)); then
	exec $TCVT "$@"
else
	exec "$@"
fi