7 Fév
2006
7 Fév
'06
14:58
Vincent Lefevre a écrit :
Une page intéressante:
http://www.softpanorama.org/Scripting/Shellorama/portability.shtml
Ah, oui.... C'est tres interressant... on peut y lire ceci : Portability [...] ck with bash unless you install ksh93 manually. But bash is pretty close to ksh93 and if you tested you scripts with it it should work OK. Cette derniere phrase est une pure invention. ksh93 est hyper eloigne de bash. La premiere chose par laquelle on se fait mordre en ksh93 est la portee des variables a l'interieur des fonctions. function a { typeset b b=23 c echo $b } function c { b=iwurtiowruturioyueoyueouyoeuo } en bash : a iwurtiowruturioyueoyueouyoeuo en ksh93 a 23 Christophe