view bin/example/args.sh @ 558:db2d7026b531

bin/vpn-moz.sh
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 26 Nov 2013 13:46:07 -0800
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
}