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