Skip to content

Instantly share code, notes, and snippets.

@izimbra
izimbra / Recursively list files in shell
Last active December 15, 2015 22:58
Recursively lists files of specific type in a directory (XML in this case). Unlike `ls' command, `find' only outputs paths of the files, which makes it possible to use them as arguments to other commands. Syntax below was tried in OS X 10.8.3 #shell #osx
find $FOLDER | grep -e '.[xml|XML]'