home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 8 / IOPROG_8.ISO / contents / scripts / bsdgames < prev    next >
Encoding:
Text File  |  1997-08-25  |  419 b   |  17 lines

  1. if fgrep fortune etc/profile ; then
  2.     BOGUS_FLAG="bogus_value"
  3. else
  4.     echo "echo" >> etc/profile
  5.     echo "fortune" >> etc/profile
  6.     echo "echo" >> etc/profile
  7. fi
  8. if [ -r etc/csh.login ]; then 
  9.     if fgrep fortune etc/csh.login ; then
  10.         BOGUS_FLAG="bogus_value"
  11.     else
  12.         echo 'if ( { tty --silent } ) then >& /dev/null' >> etc/csh.login
  13.         echo '  echo "";fortune;echo ""' >> etc/csh.login
  14.         echo 'endif' >> etc/csh.login
  15.     fi
  16. fi
  17.