linux : 文件夹下的所有文件按时间顺序排列
方法 一
1 | find . -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head |
或者
1 | find $1 -type f | xargs stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | head |
1 | stat --printf="%y %n\n" $(ls -tr $(find * -type f)) |
Updated: If there are spaces in filenames, you can use this modification
1 | OFS="$IFS";IFS=$'\n';stat --printf="%y %n\n" $(ls -tr $(find . -type f));IFS="$OFS"; |
方法二
1 2 3 4 5 | # 顺序 ls -tl # 逆序 ls -trl |