Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the soledad domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the soledad domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114
Linux : rechercher un fichier - voici comment faire - Practical Tips

Linux : rechercher un fichier – voici comment faire

by Flo

Si vous recherchez un fichier sous Linux, vous le trouverez via votre terminal Linux.

Rechercher un fichier via le terminal Linux

Ouvrez votre terminal Linux avec la combinaison de touches [Ctrl] + [Alt] + [T] ou saisissez le terme « terminal » dans la recherche.

  • Si vous cherchez un dossier sous Linux, la commande « find / -name nom du dossier » vous aidera.
  • Supposons que vous cherchiez le dossier « Office », tapez donc « find / -nom Office » dans le terminal. Vous obtenez le chemin d’accès au dossier recherché.
  • Le « / » après « find » et avant « -name » indique que le dossier doit être recherché partout.
  • Vous pouvez aussi chercher dans un répertoire spécifique. Saisissez alors le point de départ de la recherche – par exemple dans le répertoire « Travail » comme suit : find /Travail / -nom Office « 

Comment chercher un fichier spécial dans Linux

Si vous ne cherchez pas un dossier mais un fichier unique, vous en apprendrez plus dans cette section.

  • Entrez dans la console « find / -iname NomFichier ». Par exemple, si vous cherchez le fichier « Reimi.txt », la commande est « find / -iname Rime.txt ».
  • L’extension du fichier est importante – sinon le terminal ne vous donnera aucun résultat.
  • Les noms de fichiers ne doivent pas contenir d’espaces ; vous n’obtiendriez pas non plus de résultat ici.

Related Articles

Leave a Comment