沒有權限和硬連結的 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個檔案。這些都是硬連結在一起嗎?

相關內容