Hledám soubory, jejichž název obsahuje AAA
v jejich cestě pomocí následujícího příkazu:
find path_A -name "*AAA*"
Vzhledem k výstupu zobrazenému výše uvedeným příkazem chci tyto soubory přesunout do jiné cesty, řekněme path_B
. Místo přesouvání těchto souborů jeden po druhém mohu optimalizovat příkaz přesunutím těchto souborů hned po příkazu find?
Přijatá odpověď:
S GNU mv:
find path_A -name '*AAA*' -exec mv -t path_B {} +
To použije příkaz find -exec
možnost, která nahrazuje {}
s každým najít výsledek a spustí příkaz, který mu zadáte. Jak je vysvětleno v man find
:
-exec command ;
Execute command; true if 0 status is returned. All following
arguments to find are taken to be arguments to the command until
an argument consisting of `;' is encountered.
V tomto případě používáme +
verzi -exec
takže spouštíme jako málo mv
operace, jak je to možné:
-exec command {} +
This variant of the -exec action runs the specified command on
the selected files, but the command line is built by appending
each selected file name at the end; the total number of invoca‐
tions of the command will be much less than the number of
matched files. The command line is built in much the same way
that xargs builds its command lines. Only one instance of `{}'
is allowed within the command. The command is executed in the
starting directory.
Najít soubory, které uživatel nemůže číst?
`unbuffer` nebo `stdbuf` pro odstranění Stdout vyrovnávací paměti?