Skip to content

Instantly share code, notes, and snippets.

@paulboardman
Last active December 18, 2015 01:58
Show Gist options
  • Save paulboardman/5707161 to your computer and use it in GitHub Desktop.
Save paulboardman/5707161 to your computer and use it in GitHub Desktop.
'find' command with multiple filename patterns. The -name arguments must be grouped for this to work as expected.
find . \( -name "*.csv" -or -name "*.tsv" \) -exec ls -lh {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment