2012-05-22 12:49:45 -04:00
|
|
|
#
|
|
|
|
# Executes commands at logout.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2016-08-23 10:31:34 -05:00
|
|
|
# Execute code only if STDERR is bound to a TTY.
|
|
|
|
[[ -o INTERACTIVE && -t 2 ]] && {
|
|
|
|
|
2012-05-22 12:49:45 -04:00
|
|
|
# Print the message.
|
|
|
|
cat <<-EOF
|
|
|
|
|
|
|
|
Thank you. Come again!
|
|
|
|
-- Dr. Apu Nahasapeemapetilon
|
|
|
|
EOF
|
2016-08-23 10:31:34 -05:00
|
|
|
|
|
|
|
} >&2
|