nettoyer_image
By: a guest | Sep 9th, 2010 | Syntax:
Bash | Size: 0.18 KB | Hits: 21 | Expires: Never
#!/bin/bash
# usage: ./nettoyer_image ficher_liste
if [ $# -ge 1 ]
then
FILE_LIST=$1
else
FILE_LIST=$STDIN
fi
cat $FILE_LIST | while read LINE
do
rm -f $LINE
done