Created
February 16, 2022 11:31
-
-
Save MarlonJD/d83eb77739ef83ab97bb0ff7840b72f8 to your computer and use it in GitHub Desktop.
Hide emacs backup and autosave files on macos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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