Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


? | 13 comments | Create New Account
Click here to return to the '?' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
?
Authored by: Graff on Dec 17, '03 10:02:43PM

Something might be messed up with your paths, try:

/usr/bin/calendar -f /usr/share/calendar/calendar.history -l 365 | grep "LOTR"
This will specifically run the proper calendar program located at /usr/bin/calendar

You can see if your $PATH variable is set up to use /usr/bin by doing:
echo $PATH
the text /usr/bin should be in there somewhere.

If it's not then if you are using tcsh for your default shell add this line to your '~/.tcshrc' file (create the file if you don't have one):
setenv PATH /usr/bin:{$PATH}
If you are using bash then add this line to your '~/.bash_profile' file (again create it if you don't have it)
export PATH=$PATH:/usr/sbin/:/usr/local/bin



[ Reply to This | # ]