fabianmoronzirfas
12/16/2014 - 9:43 AM

remove something from list shell

remove something from list shell

for i in $(cat "report.txt"); do
    tmp=$(echo $i | tr -d '"')
    echo $tmp
    rm -f $tmp
done