ls 或 ll 列出没有权限和硬链接

ls 或 ll 列出没有权限和硬链接

我需要递归列出 DVD 备份的目录。最佳格式如下:

Name of the directory:
subdirectory0/
subdirectory1/
size date time name0.txt
size date time name1.sh
size date time name2.odt

我用这个疯狂的命令得到了它:

ls -alFRgGv --time-style='+%Y-%m-%d %H:%M:%S' --group-directories-first | sed -r 's/^[drwx-]{10} *[0-9]* //;/^total /d;/.*\.{1,2}\/$/d ';

请问,还有其他方法可以在 ls 输出中省略权限和硬链接吗?(“ls”,而不是使用命令“find”)

附言:

总数后面有一些奇怪的数字。目录中有“总数 18”,但只有 2 个文件。这些都是硬链接吗?

相关内容