“Bash encontre toque” Respostas de código

Bash encontre toque

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

Bash encontre toque

-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

Respostas semelhantes a “Bash encontre toque”

Perguntas semelhantes a “Bash encontre toque”

Mais respostas relacionadas para “Bash encontre toque” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código