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 -- Pozdrawiam, Rafal Strzalinski (nabla)
Back to the thread
Back to the list