GNU/Linux >> Tutoriales Linux >  >> Linux

¿Escribir en un archivo .txt?

FILE *f = fopen("file.txt", "w");
if (f == NULL)
{
    printf("Error opening file!\n");
    exit(1);
}

/* print some text */
const char *text = "Write this to the file";
fprintf(f, "Some text: %s\n", text);

/* print integers and floats */
int i = 1;
float pi= 3.1415927;
fprintf(f, "Integer: %d, float: %f\n", i, pi);

/* printing single characters */
char c = 'A';
fprintf(f, "A character: %c\n", c);

fclose(f);

FILE *fp;
char* str = "string";
int x = 10;

fp=fopen("test.txt", "w");
if(fp == NULL)
    exit(-1);
fprintf(fp, "This is a string which is written to a file\n");
fprintf(fp, "The string has %d words and keyword %s\n", x, str);
fclose(fp);

Linux
  1. ¿Realizando operaciones de escritura atómica en un archivo en Bash?

  2. ¿Escribir todo el desplazamiento hacia atrás de Tmux en un archivo?

  3. Permisos de archivo en Linux:lectura/escritura/ejecución

  4. ¿Cómo verificar si un archivo está vacío en Bash?

  5. ¿Cómo convertir ISO8859-15 a UTF8?

Bash:escribir en archivo

¿Cómo escribir un archivo con C en Linux?

Shell:escribe contenido variable en un archivo

scp un solo archivo a múltiples ubicaciones

cp -L frente a cp -H

Archivo mv de Linux con nombre largo