I wanted to see the .htaccess files on my Mac (in the Finder). So I enabled the ShowAllFiles from the Terminal.
defaults write com.apple.Finder AppleShowAllFiles YES
It works like expected but the downside is that I'm seeing all the .DS_Store and .localized files.
Is there a way to only show the files named .htaccess (and possibly a few more in the future) ?
A colleague suggested to leave the files hidden and use the chflags command to show only the files I want.
chflags nohidden .htaccess
Or recursively in my development folder:
Hope it helps you guys like it helped me!