home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / pdksh-4.9-src.tgz / tar.out / contrib / pdksh / std / mklinks < prev   
Text File  |  1996-09-28  |  153b  |  15 lines

  1. :
  2. # Make links 
  3. # we do it this way so that we can support symlinks
  4. # easily.
  5.  
  6. src=`pwd`
  7. cd $1
  8. shift
  9. LN="${LN:-ln}"
  10.  
  11. for f in $*
  12. do
  13.   $LN $src/$f .
  14. done
  15.