• [^] # Re: ^ petite coquille, je pense

    Posté par (Mastodon) . En réponse au message Ecran. Évalué à 3.

    Hello,
    Dans la commande :

    lspci -v | grep -I vga

    Je pense qu'il y a une coquille. La commande proposée est plus probablement :

    lspci -v | grep -i vga

    (le « i » est en minuscule)

    Rappel :

     $ grep --help
    Utilisation : grep [OPTION]... MOTIF [FICHIER]...
    Search for PATTERN in each FILE.
    Example: grep -i 'hello world' menu.h main.c
    Pattern selection and interpretation:
     [...]
     -i, --ignore-case ignorer la distinction de la casse
     [...]
    Contrôle de la sortie :
     [...]
     -I identique à --binary-files=without-match
     [...]