2012-05-22 16:49:45 +00:00
|
|
|
#
|
|
|
|
# Executes commands at logout.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2016-08-23 15:31:34 +00:00
|
|
|
# Execute code only if STDERR is bound to a TTY.
|
|
|
|
[[ -o INTERACTIVE && -t 2 ]] && {
|
|
|
|
|
2018-05-23 01:44:57 +00:00
|
|
|
SAYINGS=(
|
|
|
|
"So long and thanks for all the fish.\n -- Douglas Adams"
|
|
|
|
"Good morning! And in case I don't see ya, good afternoon, good evening and goodnight.\n --Truman Burbank"
|
|
|
|
)
|
2012-05-22 16:49:45 +00:00
|
|
|
|
2018-05-23 01:44:57 +00:00
|
|
|
# Print a randomly-chosen message:
|
|
|
|
echo $SAYINGS[$(($RANDOM % ${#SAYINGS} + 1))]
|
2016-08-23 15:31:34 +00:00
|
|
|
|
|
|
|
} >&2
|