#!/bin/bash

COLUMNS=$(stty size 2> /dev/null | cut -d' ' -f2)

if [[ -z $COLUMNS ]]; then
    COLUMNS=80
fi

python /usr/lib/atheist/athcmd.py --cols=$COLUMNS "$@"
