Hacker News new | ask | show | jobs
by michaelcampbell 840 days ago
"binding" is pretty standard terminology in some oldtimey languages; lisp, ML, etc.
1 comments

Bash documentation says that "set -u" traps variables that are "unset".

The actual diagnostic itself is better educated:

  $ set -u
  $ asdasdf
  $ echo $asdasdf
  bash: asdasdf: unbound variable