I want to list every file, including hidden files, in the current directory. I don't want to include the parent (..) and current (.) directory.
I found this:
how to glob every hidden file except current and parent directory
At the end, someone states ls -A is the way to go, but it's downvoted. However, it seems to work. What's wrong with ls -A?