Skip to content

Instantly share code, notes, and snippets.

@stevekm
Created January 20, 2016 16:23
Show Gist options
  • Save stevekm/0a1fa901db72f486bd6e to your computer and use it in GitHub Desktop.
Save stevekm/0a1fa901db72f486bd6e to your computer and use it in GitHub Desktop.
find ignore dotfiles
#!/bin/bash
# in OS X
find -E . \( ! -regex '.*/\..*' \)
# vanilla bash
find . \( ! -regex '.*/\..*' \) -type f -name "filename"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment