Seperate arguments by only a newline: xargs -d “\n”.
find / -name '*.bak' | xargs -d "\n" -r rm (otherwise filenames with space cause trouble)
Seperate arguments by only a newline: xargs -d “\n”.
find / -name '*.bak' | xargs -d "\n" -r rm (otherwise filenames with space cause trouble)
tags: commands