cp
sembra capire i comandi contrassegnati. Quindi potresti usare un comando come questo per copiare gli ultimi 10 file in un'altra cartella come ad es. /test
:
cp `ls -t *.htm | head -10` /test
ls -lt *.htm | head -10 | awk '{print "cp " $9 " ../Test/"$9}' | sh