summaryrefslogtreecommitdiffstats
path: root/scripts/lunasa-del2.sh
blob: c42b2c9c3409769f4c1fce660aff8481a8cbe27f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for handle in "$@"
do
    echo "Deleting object #$handle..."
    /usr/safenet/lunaclient/bin/cmu delete -handle $handle -force -password `cat lunasa.txt`
done

echo "Done."