Passando parâmetros com getopt
Publicado por Andre Luiz da Silva 02/05/2004
[ Hits: 11.887 ]
Homepage: http://localhost
Esse é um simples código demonstrando como manipular parâmetros passados para um programa usando a função "getopt".
#include <stdio.h> #include <unistd.h> #include <errno.h> void help() { printf ("Olah.... eu sou o a funcao help!"); } void verbose () { printf ("Olah... eu sou a verbose!! \n"); } int print (char *file, char *string) { FILE *fd; if ((fd = fopen (file, "w")) == NULL) { printf ("fopen(): %s \n", strerror(errno)); exit (1); } fprintf (fd, "%s", string); fclose (fd); return 0; } int opterr = 0; int main(int argc, char **argv) { char *file = NULL, *phase = NULL; if (argc == 1) { printf ("Nao tem argumento! Falowz... \n"); exit (0); } while (1) { int opt; opt = getopt (argc, argv, "hvp:f:"); switch (opt) { case 'h': help(); break; case 'v': verbose(); break; case 'p': phase = optarg; break; case 'f': file = optarg; break; } if (opt == -1) break; if (opt == '?') { printf ("%c: This option don't exists!\n", optopt); break; } } if (phase != NULL && file != NULL) { print (file, phase); exit(0); } return 0; }
Servidor de Backup com Ubuntu Server 24.04 LTS, RAID e Duplicati (Dell PowerEdge T420)
Visualizar câmeras IP ONVIF no Linux sem necessidade de instalar aplicativos
Atualizar Debian Online de uma Versão para outra
Proteja seu Linux Mint com o Timeshift: Restaure o sistema mesmo que ele não inicie!
Instalando Google Chrome no Debian 13
Falha add cluster Proxmox (2 nós) (2)
Software livre - será que eu estou tão errado assim? (18)
O que você está ouvindo agora? [2] (218)
Dificuldade com Ocs 2.12.3 no Debian 13 com Apache2 - Can't load ... (4)