“bash trouver le toucher” Réponses codées

bash trouver le toucher

find . -type f -exec touch {} +
steamboatid

bash trouver le toucher

-exec ... \; will run one item after another. 
So if you have three files, the exec line will run three times.

-exec ... {} + is for commands that can take more than one file at a time 
(eg cat, stat, ls). 
The files found by find are chained together like an xargs command. 
This means less forking out and for small operations, can mean a substantial speedup.
steamboatid

Réponses similaires à “bash trouver le toucher”

Questions similaires à “bash trouver le toucher”

Plus de réponses similaires à “bash trouver le toucher” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code