home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xntp3.zip / mklinks < prev    next >
Text File  |  1992-09-04  |  324b  |  10 lines

  1. #!/bin/sh
  2. # call from the source root as 'mklinks ../sun4 ../src'
  3. find . -type d -print | sort | sed "s-^\.-mkdir $1-" | sh
  4. root=`echo $2 | sed "s-^\.\./--"`
  5. find . ! -type d -a ! -name Config -print | sed "s-^\./--" | while read file
  6.     do
  7.         down=`echo $file | sed -e "s-[^/]*-..-g"`
  8.         ln -s $down/$root/$file $1/$file
  9.     done
  10.