7 lines
96 B
Bash
7 lines
96 B
Bash
#!/bin/sh
|
|
# harden a link (convert it to a singly linked file)
|
|
cp $1 $1.foo
|
|
rm $1
|
|
mv $1.foo $1
|
|
|