find /docs -type f | sort
按文件名排序而不是创建日期.谢谢.
对于修改时间,请尝试以下方法:
$find /docs -type f -printf '%T@ %p\n' | sort -k1 -n
要么:
$find /docs -type f -print0 | xargs -0 stat -c "%y %n" | sort