#!/bin/sh

grep /tcsh /etc/shells > /dev/null || {
        echo "/bin/tcsh" >> /etc/shells
        echo "/usr/bin/tcsh" >> /etc/shells
    }
