/home/thinkcode/myfiles/html/
我想将最新的10个文件移动到/ home / thinkcode / Test
到目前为止我有这个.请指正.我正在寻找一个单行!
ls -lt *.htm | head -10 | awk '{print "cp "$1" "..\Test\$1}' | sh
ls -lt *.htm | head -10 | awk '{print "cp " $9 " ../Test/"$9}' | sh