19Jul/110
find and remove files
With rm and find:
rm $(find . -name *.gcda)
Or with the -exec paramter of find
find . -name *.gcda -exec rm -rf {} \;
xterm colors »
« git tag
With rm and find:
rm $(find . -name *.gcda)
Or with the -exec paramter of find
find . -name *.gcda -exec rm -rf {} \;
Leave a comment