ton exemple d'image a écritgrep : search file(s) for lines that match the pattern
Tu cherche un mot dans un texte en fait, genre :
grep mot texte
Pour voir comment te servir d'une commande tu fais tout simplement "man commande" (manuel de la commande)
par exemple pour cp :
NAME
cp - copy files and directories
SYNOPSIS
cp [OPTION]... [-T] SOURCE DEST
cp [OPTION]... SOURCE... DIRECTORY
cp [OPTION]... -t DIRECTORY SOURCE...
[etc]
donc "cp [des options (-f pour forcer la copie par exemple)] [source (dossier d'origine)] [destination (dossier de destination)]
en général l'option --help te donne un résumé du man. Donc cp --help pourra t'informer sur la commande cp.
Désolé si mon post est brouillon...