Linux one liner enqueue music under current dir into Totem player

find . -type f ( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a"  -o -iname "*.ogg" -o -iname "*.wav" -o -iname "*.wma" ) -print0 | xargs -0 totem

  • ‘-o’ means or: we are choosing either type of file
  • ‘-print0’ + ‘xargs -0’: almighty combo that allows for filenames with newlines