#!/bin/sh
# For airfs, open a specified directory with a terminal program

TERMINAL_COMMAND=kterm

{ cd $1; $TERMINAL_COMMAND; }
