Sto cercando di copiare i primi file 'n' da una directory in un'altra directory preferibilmente con solo strumenti cli (senza script).
Ho provato quanto segue:
-
find . -maxdepth 1 -type f | head -5 | xargs cp -t /target/directory
This looked promising, but failed because osx
cp
command doesn't appear to have the-t
switch -
exec
in alcune configurazioni diverseThis probably failed for syntax problems on my end : /
I couldn't seem to get ahead
type selection working
Qualsiasi aiuto o suggerimento sarebbe apprezzato.
Grazie in anticipo!