nsbin/remove.dead.links

7 lines
95 B
Plaintext
Raw Normal View History

for a in $@; do
if [ ! -e "$a" ]; then
echo removing "$a"...
rm "$a"
fi
done