10 lines
79 B
Plaintext
10 lines
79 B
Plaintext
18 years ago
|
#!/bin/sh
|
||
|
|
||
|
for file in $*
|
||
|
do
|
||
|
if [ -L $file ]
|
||
|
then
|
||
|
/bin/rm -f $file
|
||
|
fi
|
||
|
done
|