Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MarlonJD/d83eb77739ef83ab97bb0ff7840b72f8 to your computer and use it in GitHub Desktop.
Save MarlonJD/d83eb77739ef83ab97bb0ff7840b72f8 to your computer and use it in GitHub Desktop.
Hide emacs backup and autosave files on macos
find $HOME/dev/web/* -type f -name '#*#' -exec chflags hidden '{}' ';'
find $HOME/dev/web/* -type f -name '*~' -exec chflags hidden '{}' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment