view bin/example/args.sh @ 446:95afeaf9c42d

-> http://k0s.org/portfolio/ideas/install_software_trifecta.txt
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 09 Aug 2013 16:28:20 -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
}