home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / func / harden < prev    next >
Encoding:
Text File  |  1993-01-31  |  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.