Remove all files in a directory except *.ogg
#!/bin/bash find . ! -name "*.ogg" -exec rm -f {} \;
11308 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
#!/bin/bash find . ! -name "*.ogg" -exec rm -f {} \;
rm ~/Desktop/playlist.m3u find ~/music/ -iname "*.mp3" -print >> ~/Desktop/playlist.m3u find ~/music/ -iname "*.ogg" -print >> ~/Desktop/playlist.m3u