Salva retorno do sistema
Publicado por Perfil removido (última atualização em 11/01/2010)
[ Hits: 4.581 ]
É um pequeno script que se encarrega de salvar o retorno de algum comando dado para você em um arquivo que você escolhe.
Muito útil para quem vai examinar um log, por exemplo, e não pode dar um crtl+F. :)
Você teria que copiar e colar, mas o script faz isso por você.
Espero que gostem, caso tenham alguma sugestão, podem mandar.
Abraço.
// save_system_return.c // // Copyright 2010 Orlando Xavier <ox@orlandoxavier> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301, USA. #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char** argv) { char cmd[255]; char nome_arq[255], diretorio[255]; char param_cmd[255], param_nome_dir[255], param_touch[255], param_grava[255]; printf("Comando do Shell: "); gets(cmd); printf("Nome do arquivo seguido da extensao: "); gets(nome_arq); printf("Caminho do diretorio: "); gets(diretorio); sprintf(param_nome_dir, "%s %s", nome_arq, diretorio); system(param_nome_dir); sprintf(param_touch, "touch %s", param_nome_dir); system(param_touch); sprintf(param_cmd, "%s", cmd); system(param_cmd); sprintf(param_grava, "%s >> %s", param_cmd, param_nome_dir); system(param_grava); return(0); }
Um parser para tratar opções passadas para um programa em C
Desenhando uma superfície Bézier
Nenhum coment�rio foi encontrado.
Atualizando o Passado: Linux no Lenovo G460 em 2025
aaPanel - Um Painel de Hospedagem Gratuito e Poderoso
O macete do Warsaw no Linux Mint e cia
Visualizar arquivos em formato markdown (ex.: README.md) pelo terminal
Dando - teoricamente - um gás no Gnome-Shell do Arch Linux
Como instalar o Google Cloud CLI no Ubuntu/Debian
Mantenha seu Sistema Leve e Rápido com a Limpeza do APT!
Procurando vídeos de YouTube pelo terminal e assistindo via mpv (2025)
Pastas da raiz foram para a área de trabalho [RESOLVIDO] (9)
Problema ao atualizar archlinux nvidia [RESOLVIDO] (3)