If you wanted to get fancy, you could do up a perl script to figure out what time it is and have it alter the login message (good morning/afternoon/evening).#!/bin/sh
echo "Hello $USER"
#!/usr/bin/perl
use strict;
use POSIX qw/strftime/;
$hour = strftime( "%h", localtime );
$user = $ENV{'USER'};
if ($hour < 12 && $hour >= 0) {
$message = "Morning";
} elsif ($hour >= 12 && $hour < 18) {
$message = "Afternoon";
} else {
$message = "Evening";
}
print "Good $message, $user.\n";