set `date`
y=$3
if [ $y -le 9 ]
then
cal |sed "s/$3/*/"
else
cal |sed "s/$3/**/"
fi
Study it today is an absolutely FREE website which has been created to provide notes and study materials to the people who are enthusiastic to study different technical and non-technical subjects in a different way....
6 comments:
not working pls give correct
Noy working for single digit
check it again
t=`date +%e`
if [ $t -le 10 ]
then
cal -h |$cd "s/$t/*/"
else
cal -h |sed "s/$t/**/"
fi
Still not working
Use ncal instead of cal
set `date`
y=$3
if [ $y -le 9 ]
then
cal -h |sed "s/$y/*/"
else
cal -h |sed "s/$y/**/"
fi
Post a Comment