僅列出目前使用者的文件

僅列出目前使用者的文件

如何限制ls只顯示我是所有者的文件?

我也許可以使用 with 將一些東西串在一起findls但我正在尋找ls唯一的解決方案。

答案1

基本上就是這樣

ls - l | grep $用戶

答案2

find . -group {group-name} -name {file-name}
find . -user {user-name} -iname "*.txt"
find . -user {user-name} -exec ls -l {} \;
ls -l | grep " {user-name} " 

ls並認為僅透過命令無法做到這一點man ls

相關內容