home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Shells / zsh-3.0.5-MIHS / src / Functions / harden < prev    next >
Encoding:
Text File  |  1996-05-06  |  97 b   |  7 lines

  1. #! /bin/sh
  2. # harden a link (convert it to a singly linked file)
  3. cp $1 $1.foo
  4. rm $1
  5. mv $1.foo $1
  6.  
  7.