Skip to content

Instantly share code, notes, and snippets.

View klynchk's full-sized avatar

klynchk

  • 20:29 (UTC +01:00)
View GitHub Profile
@scarlson
scarlson / playlist.sh
Last active August 25, 2024 03:17
Bash script to create .m3u playlist files for all mp3s in subdirectories
#!/bin/bash
#
# bash script to create playlist files in music subdirectories
#
# Steve Carlson (stevengcarlson@gmail.com)
find . -type d |
while read subdir
do
rm -f "$subdir"/*.m3u