Here is a version which doesn't use ls. It should be less vulnerable to strange characters in file names:
find . -maxdepth 1 -type f -name "*.html" -print0 |\
xargs -0 stat --printf "%Y %n\n" |\
sort -n |\
tail -10 |\
sed 's/[0-9]\+[[:space:]]//' |\
tr '\n' '\0' | xargs -0 -I{} cp {} ../Test/{}
I used find for a couple of reasons:
1) if there are too many files in a directory, bash will balk at the wildcard expansion*.
2) Using the -print0 argument to find gets around the problem of bash expanding whitespace in a filename in to multiple tokens.
* Actually, bash shares a memory buffer for its wildcard expansion and its environment variables, so it's not strictly a function of the number of file names, but rather the total length of the file names and environment variables. Too many environment variables => no wildcard expansion.
xargsand avoidawk+sh(feels ugly) or probably usefind ... -execand run just one command. – KurzedMetal May 15 '12 at 15:55