[Précédent (date)] [Suivant (date)] [Précédent (sujet)] [Suivant (sujet)] [Index par date] [Index par sujet]

Re: shell script



Nicolas Couture wrote:
> 
> On Wednesday 26 June 2002 12:11 pm Fabien Ninoles <[email protected]> wrote
> in <[email protected]>:
> > test est une commande populaire aussi connu sous le nom de '['.
> > autrement dit if [ $? -eq 0 ]; est équivalent à if test -eq 0; (le ] est
> > un argument optionnel
> > ignoré par test),

$ man bash
[...]
Special Parameters
  The  shell  treats  several  parameters  specially.  These
  parameters may only be referenced; assignment to  them  is
  not allowed.
[...]
  ?      Expands to the status of the most recently executed
         foreground pipeline.

if [ $? -eq 0 ]
if test $? -eq 0