GNU/Linux >> Tutoriels Linux >  >> Linux

Écrire dans le fichier .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. Comment écrire un fichier dans un autre ?

  2. Écrire tout le défilement Tmux dans un fichier ?

  3. Comment convertir ISO8859-15 en UTF8 ?

  4. Convertir toutes les extensions de fichiers en minuscules

  5. Ajouter un en-tête à un fichier délimité par des tabulations

Bash :Écrire dans un fichier

Comment vérifier si un fichier est vide dans Bash ?

Shell - Écrire le contenu d'une variable dans un fichier

file_put_contents ne crée pas de fichier txt

scp un seul fichier vers plusieurs emplacements

Fichier mv Linux avec un nom long