1 | |
Auteur | Messages |
---|---|
xoin | #1 Posté le 2/3/2012 à 13:17:46 |
salut j'ai un grand parti dans mon logiciel avec l'aide de cette gambas forge:: maintenant j'ai un problème avec terminal marche cette commande 1 -sudo -s 2-tcpdump -D>tmp/fichier.text avec gmabas marche cette commande exec ["gksu","tcpdump -D"] mais maitenat je feut excuter sur shell parceque exec ne comprend pas" > " qui est symbol de sorti dans un fichier 1 shell marche SHELL "ls>/tmp/hhhh.text" 2 créer le fichier vide avec ne pas demande excution SHELL "gksu tcpdump -D>/tmp/hhhh.text" elle ne peut pas exécuter de commande solution 1 je pense comment rendre ubuntu ne demande pas pasword comment ???? 2 ou shell peut prend plusieurs parametre comment ????? | |
linuxos | #2 Posté le 2/3/2012 à 14:28:32 |
Un peu de sel, de poivre et la crevette sera... | I think you need to read more the documentation. Firstly, the SHELL command is to execute commands like you execute it in a real Shell, with the redirection (Ex: > /tmp/data.txt) The EXEC command execute directly a command and you can use the Pipe, the redirection, etc.. like a SHELL. So you must choose that as you want to do. Second, I have answered you already about how to execute a command in Gambas: http://gambasforge.org/sujet-4249-resulta-dynamique-page-1.html#m1 Olivier Lorsqu'on s'occupe d'informatique, il faut faire comme les canards... Paraître calme en surface et pédaler comme un forcené par en dessous. |
jeanyvon | #3 Posté le 2/3/2012 à 14:36:21 |
Gambas? Ma! Et gusto | Ben justement! je n'ai pas encore compris comment on choisi entre EXEC et SHELL ni comment on peut se "loguer" en tant que root merci JY Vieillir? On peut retarder mais pas y échapper! |
xoin | #4 Posté le 2/3/2012 à 14:47:40 |
merci a tous mais le problemme comment laisser root activer pou excuter l'autre commande | |
gambix | #5 Posté le 5/3/2012 à 21:12:02 |
Faire simple ! | tu doit utiliser shell de manière asynchrone... avec tu ouvre une shell que tu bascule en su hprocess = shell "su" as "proccess" public sub Process_read() end etc Moins de texte dans une signature c'est agrandir son espace. |
spheris | #6 Posté le 5/3/2012 à 23:34:12 |
Mais ou il va chercher tout ça ???? Trooop fort ce gambix ! | |
1 |