File size: 235 Bytes
ec51737 | 1 2 3 4 5 6 7 8 9 10 11 12 | #! /bin/bash
ws=$(realpath $(dirname "${BASH_SOURCE[0]}"))
cd $ws
find $ws -maxdepth 2 \( -name "output" -o -name "build.log" \) | parallel -I {} -j 8 \
'
d=$(realpath $(dirname {}))
rm -rf {};
echo "clean [{}] finish.";
'
|