What is the most idiomatic way in Bash to test if no positional parameters are given? There are so many ways to check this, I wonder if there is one preferred way.
S
For me, the classical way is:
[[ $# -eq 0 ]]