j
k
j a
j l
Admittedly, this is not a good example, but consider: find . -name '*.x86f' | xargs rm
Admittedly, this is not a good example, but consider:
find . -name '*.x86f' | xargs rm
Try something like this:
find . -name '*.x86f' -print0 | xargs -0 rm
Back to the thread
Back to the list