Mercurial > hg > config
view bin/example/args.sh @ 715:beb501ba919f
minor cleanup
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 20 Oct 2014 09:28:57 -0700 |
parents | 5bee5c55a7a0 |
children |
line wrap: on
line source
#!/bin/bash function foo { echo '$*'="$*" echo '$@'="$@" echo '$#'="$#" if [[ "$*" == "test string" ]] then echo '$*' == "test string" if [[ "$@" == "test string" ]] then echo '$@' == "test string" else echo '$@' != "test string" fi fi }