[Gambas-user] [CRASH REPORT] COMMANDE SHELL
Benoît Minisini
g4mba5 at gmail.com
Mon Aug 6 13:34:04 CEST 2018
Le 01/08/2018 à 21:15, Pierre Henri a écrit :
> Hello,
>
> Damned, my program crashed Gambas that way :
>
> Problème résultat après execution *Shell* "commande"
>
>
> Ne produit pas le même résultat si j'
> éxecute la commande
> à
> partir de la console
> Linux et sous Gambas à partir de la commande Shell.
>
> Pierre Henri GIRAUD
>
>
> *_EXECUTION A PARTIR DE LA CONSOLE LINUX_*
>
> *mkdir -p Professeurs/{P1/P11,P2/P21,P3/{p31,p32/P320,p33}}
> Eleves/{el1,el2,el3}*
>
>
> Le resultat est conforme
>
>
> PS: LinuxMint/Ubuntu 17.10
>
>
>
> *_EXECUTION SOUS GAMBAS3 A PARTIR DE L'APPEL AU SHELL_*
> (Copié-Collé de la commande depuis la console )
>
> *Shell "mkdir -p Professeurs/{P1/P11,P2/P21,P3/{p31,p32/P320,p33}}
> Eleves/{el1,el2,el3}"*
> *
> *
> Le résultat n'est pas identique sinon un peu farfelu !
>
> Ou est problème ?
>
Please write in english.
The problem is that SHELL uses "/bin/sh", by default, and that "{...}"
is a bash syntax.
To fix that, tell Gambas which shell you want to use with the
System.Shell property:
System.Shell = "/bin/bash"
Regards,
--
Benoît Minisini
More information about the User
mailing list