#!/bin/bash
if [[ $1 = :* ]]; then
    form=$1
    shift
else
    form=:auto
fi
exec condor_status -ads${form} "$@"
