Typically find "$HOME/docs"
, but with a few caveats:
-
In Zsh or Fish, the quotes are unnecessary:
find $HOME/docs
-
If I'm using anything potentially destructive:
mv "${HOME:?}/bin" ...
-
Of course, if it's followed by a valid identifier character, I'll add braces:
"${basename}_$num.txt"
This isn't true. Shellcheck doesn't insist on braces unless it thinks you need them.