amg4psblas/krylov/cleansymlinks

10 lines
79 B
Bash

#!/bin/sh
for file in $*
do
if [ -L $file ]
then
/bin/rm -f $file
fi
done