首页 > 试题广场 >

找出etc地下,档案容量大于50K , 且 档案所属人不是

[问答题]
找出/etc地下,档案容量大于50K , 且 档案所属人不是root的档名,且将权限完整的列出(ls -l)
find /etc -size +50k -a ! -user root -exec ls -ld {} \;
find /etc -size +50k -a ! -user root -type f -exec ls -l {} \;
发表于 2020-11-30 14:12:29 回复(0)