Lancer appl depuis Terminal dans programme c
Résolu/Fermé
LelLex
Messages postés
1628
Date d'inscription
mercredi 18 février 2009
Statut
Membre
Dernière intervention
5 septembre 2012
-
Modifié par LelLex le 4/12/2010 à 23:11
mamiemando Messages postés 33363 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 16 novembre 2024 - 8 déc. 2010 à 19:26
mamiemando Messages postés 33363 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 16 novembre 2024 - 8 déc. 2010 à 19:26
A voir également:
- Lancer appl depuis Terminal dans programme c
- Commande terminal mac - Guide
- Programme demarrage windows 10 - Guide
- Lancer un programme au demarrage - Guide
- Discord en attente du terminal ✓ - Forum MacOS
3 réponses
mamiemando
Messages postés
33363
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
16 novembre 2024
7 801
7 déc. 2010 à 19:00
7 déc. 2010 à 19:00
Ben qu'est ce qui te bloque ?
Ce qui donne :
Bonne chance
#include <stdio.h> int main(){ FILE *fp = popen("ls -al /","w"); if(!fp){ fprintf(stderr,"erreur"); return 1; } printf("processus lancé avec succès !\n"); pclose(fp); return 0; }
Ce qui donne :
(mando@aldur) (~) $ gcc plop.c (mando@aldur) (~) $ ./a.out processus lancé avec succès ! total 128 drwxr-xr-x 21 root root 4096 7 déc. 19:02 . drwxr-xr-x 21 root root 4096 7 déc. 19:02 .. drwxr-xr-x 2 root root 4096 4 déc. 16:30 bin drwxr-xr-x 3 root root 4096 4 déc. 16:35 boot lrwxrwxrwx 1 root root 11 3 juin 2007 cdrom -> media/cdrom drwxr-xr-x 15 root root 3640 7 déc. 18:29 dev drwxr-xr-x 141 root root 12288 7 déc. 18:33 etc drwxr-xr-x 9 root root 4096 2 nov. 17:14 home drwxr-xr-x 2 root root 4096 3 juin 2007 initrd lrwxrwxrwx 1 root root 28 14 juin 22:53 initrd.img -> boot/initrd.img-2.6.32-5-686 drwxr-xr-x 13 root root 12288 4 déc. 16:30 lib drwx------ 2 root root 16384 3 juin 2007 lost+found drwxr-xr-x 5 root root 4096 7 déc. 18:29 media drwxr-xr-x 12 root root 4096 12 mai 2010 mnt dr-xr-xr-x 127 root root 0 7 déc. 2010 proc drwxr-xr-x 27 root root 4096 7 déc. 19:02 root drwxr-xr-x 2 root root 4096 4 déc. 16:31 sbin drwxr-xr-x 2 root root 4096 7 mai 2007 selinux drwxr-xr-x 3 root root 4096 17 nov. 2008 srv drwxr-xr-x 12 root root 0 7 déc. 2010 sys drwxrwxrwt 11 root root 32768 7 déc. 19:02 tmp drwxr-xr-x 11 root root 4096 19 sept. 2009 usr drwxr-xr-x 15 root root 4096 25 nov. 2009 var lrwxrwxrwx 1 root root 25 14 juin 22:53 vmlinuz -> boot/vmlinuz-2.6.32-5-686
Bonne chance
mamiemando
Messages postés
33363
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
16 novembre 2024
7 801
Modifié par mamiemando le 5/12/2010 à 13:16
Modifié par mamiemando le 5/12/2010 à 13:16
Tu peux utiliser la fonction popen.
Si le processus est invoqué avec succès, pense à faire un pclose.
Bonne chance
man popen
Si le processus est invoqué avec succès, pense à faire un pclose.
Bonne chance
LelLex
Messages postés
1628
Date d'inscription
mercredi 18 février 2009
Statut
Membre
Dernière intervention
5 septembre 2012
112
7 déc. 2010 à 00:17
7 déc. 2010 à 00:17
J'ai regardé popen avec le man, mais je vois pas trop comment l'utiliser.
En fait je voudrais faire ça :
Comment je peux intégrer popen dedans ?
Merci d'avance.
En fait je voudrais faire ça :
// Lancer une application if(strcmp(question, "Lance Firefox.\n") == 0) { printf("firefox\n"); }
Comment je peux intégrer popen dedans ?
Merci d'avance.
7 déc. 2010 à 23:36
8 déc. 2010 à 08:24
8 déc. 2010 à 12:37
8 déc. 2010 à 19:26