I am starting with a file containing a list of hundreds of files (full paths) in a random order. I would like to list the details of the ten latest files in that list. This
Try this:
xargs -a list-of-files.txt ls -last | head -n 10