Syndicate content

find

Nov 09
0

Some cool uses of find

find the almighty.

Delete all files but javascript ones from current directory recursively
find . -not -iname "*js" -type f -delete



Some cool examples also on Wikipedia.