How to safely remove all files (including hidden files) from current directory (after cding to that directory)?
As far as I know, cd RELEVANT_DIR && rm * won't remove hidden files.
I would assume cd RELEVANT_DIR && rm -rf ./* is the right command but I might be wrong.
Update
I do want to remove directories (and possible symlinks and basically everything in the directory) as well.