summaryrefslogtreecommitdiff
path: root/ult/ult_7/clause.sh
diff options
context:
space:
mode:
authorJovina2012-02-01 14:12:28 +0530
committerJovina2012-02-01 14:12:28 +0530
commit985adfa4f8a8b9cfba2b0a573dadc77283651957 (patch)
treeb7ca2b96dc786f606cc0bda005a575b0b0d3f7b6 /ult/ult_7/clause.sh
parent8178aca3340078fb99d8f8c3c9cda78abeac824b (diff)
downloadsees-985adfa4f8a8b9cfba2b0a573dadc77283651957.tar.gz
sees-985adfa4f8a8b9cfba2b0a573dadc77283651957.tar.bz2
sees-985adfa4f8a8b9cfba2b0a573dadc77283651957.zip
Removed ult parts 1-8 and pushed to other repo.
Diffstat (limited to 'ult/ult_7/clause.sh')
-rw-r--r--ult/ult_7/clause.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/ult/ult_7/clause.sh b/ult/ult_7/clause.sh
deleted file mode 100644
index 23017f2..0000000
--- a/ult/ult_7/clause.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Script to greet the user according to time of day
-hour=`date | cut -c12-13`
-now=`date +"%A, %d of %B, %Y (%r)"`
-if [ $hour -lt 12 ]
-then
- mess="Good Morning $LOGNAME, Have a nice day!"
-fi
-
-if [ $hour -gt 12 -a $hour -le 16 ]
-then
- mess="Good Afternoon $LOGNAME"
-fi
-
-if [ $hour -gt 16 -a $hour -le 18 ]
-then
- mess="Good Evening $LOGNAME"
-fi
-echo -e "$mess\nIt is $now"
-