On Thu, Jul 10, 2008 at 02:09:43PM -0700, Kenneth Crocker wrote: Hi Kenneth, > bash-2.03$ pwd > /apps/rt > bash-2.03$ rt list "status='new'"; > bash: rt: command not found It looks like the directory containing "rt" is not in your PATH. The laziest fix is to just specify the full path to the rt program: $ /apps/rt/bin/rt list status='new' Shawn