opnsense-src/tools/regression/bin/sh/builtins/command3.0
Jilles Tjoelker c06336d428 sh: Get rid of unnecessary non-standard empty lists.
POSIX does not allow constructs like:
  if cmd; then fi
  { }
Add a colon dummy command, except in a test that verifies that such empty
lists do not cause crashes when used as a function definition.
2010-08-16 17:18:08 +00:00

14 lines
151 B
Text

# $FreeBSD$
command -v ls
command -v true
command -v /bin/ls
fun() {
:
}
command -v fun
command -v break
command -v if
alias foo=bar
command -v foo