79555859

Date: 2025-04-04 16:34:09
Score: 1
Natty:
Report link

Here is another more robust option using the -print0 option of find plus xargs with the -0 option - both of which, when used together, should escape any spaces or other less-safe characters in your MP3 filenames:

find . -type f -name '*.mp3' -print0 | xargs -0 -i cp {} ./oneList/
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Sherrill