Hacker News new | ask | show | jobs
by trealira 935 days ago
You can also do this in Bash.

  $ .(){ "$@"; } # define function called "."
  $ . . . # nothing
  $ . echo hello
  hello
  $