Re: Shell script

Page principale

Répondre à ce message
Auteur: Jean-Luc Jeanneau
Date:  
À: guilde
Sujet: Re: Shell script
> > Sur ma woody, la reponse est sans hesitation : oui, meme chose
eh bin non en fait.

> Quand bash est appelé avec /bin/sh il entre en mode POSIX. Sur une
> Debian voir /usr/share/doc/bash/POSIX.gz pour plus d'explications.
>
> Christian

oui, c'est juste. Merci pour cette correction.
( /usr/share/doc/bash/POSIX.NOTES.gz sur woody)

prompt> ls -la run*
-rwxr--r--    1 jeanluc  jeanluc        54 nov  1 19:06 run_bash
-rwxr--r--    1 jeanluc  jeanluc        52 nov  1 19:06 run_sh
prompt> cat run_bash
#!/bin/bash
0sub() {
    echo "depuis 0sub"
}
0sub


prompt> ./run_bash
depuis 0sub

prompt> cat run_sh
#!/bin/sh
0sub() {
    echo "depuis 0sub"
}
0sub


prompt> ./run_sh
./run_sh: `0sub': not a valid identifier