#!/bin/bash #-------------------------------------------------------------------- # $Id: bash_logout,v 0.1 2008/06/23 15:50:24 tmerkel Exp $ # Copyright 2008 Frubar Network (drscream@frubar.net) #-------------------------------------------------------------------- ########################################################################## # Test for an interactive shell. if [[ $- != *i* ]] ; then # Shell is non-interactive. Be done now! return fi ########################################################################## clear echo -e "\033[1;33m*\033[m \033[1mgoodbye $USER.\033[m"