home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ledar34.zip / leda-r-3_4_tar / LEDA-3.4 / confdir / util / unix / license.sh < prev   
Linux/UNIX/POSIX Shell Script  |  1996-09-03  |  341b  |  19 lines

  1. #!/bin/sh -f
  2.  
  3. if [ -x /bin/csh ]
  4. then 
  5.     /bin/csh confdir/util/unix/license.csh
  6. elif [ -x /bin/tcsh ]
  7. then 
  8.     /bin/tcsh confdir/util/unix/license.csh
  9. elif [ -x /usr/bin/csh ]
  10. then 
  11.     /usr/bin/csh confdir/util/unix/license.csh
  12. elif [ -x /usr/bin/tcsh ]
  13. then 
  14.     /usr/bin/tcsh confdir/util/unix/license.csh
  15. else 
  16.     touch .license
  17. fi
  18.  
  19.