|
I want to run make test-srpm on all of the Makefiles in my tree. Worked great. find . -name Makefile | sed 's/Makefile//g' | xargs -n 1 -I foo make -C foo test-srpm Once I learned sed and awk, combined them with find and xargs, I've gone crazy with the command line. Where once I used [...]
|