I can't believe I can't find a good solution... I have a hidden folder named .venv
that I would like to show in my Mac OS Monterey 12.3.1 terminal output.
I've tried:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
but when I open the terminal in the directory containing .venv
and type ls
, the hidden folder is not returned. What gives?
AppleShowAllFiles
controls what you see in Finder, not in Terminal. In Terminal,ls
will exclude dot files andls -a
orls -A
will include dot files. You can also add-a
as a default option, as shown here. – Referendum