it will be news when the riaa and mpaa sue him for it. you will really see what loss of intelligence means then:p
a more sophisticated bourne shell version:
#!/bin/sh
cd/path/to/music
echo `find . -type f -name \*.mp3 -print | wc -l` copies per line of output
while : ; do find . -type f -name \*.mp3 -print0 | xargs -0 -n 25 cat | dd bs=4096 status=progress >/dev/null; done
it will be news when the riaa and mpaa sue him for it. you will really see what loss of intelligence means then :p
a more sophisticated bourne shell version:
#!/bin/sh
cd /path/to/music
echo `find . -type f -name \*.mp3 -print | wc -l` copies per line of output
while : ; do find . -type f -name \*.mp3 -print0 | xargs -0 -n 25 cat | dd bs=4096 status=progress >/dev/null; done