我按照说明准备 LPIC,并遇到了这样的 find 指令
$ sudo find / -perm +6000 -type f
[sudo] password for Christine:
/lib64/dbus-1/dbus-daemon-launcher-helper
/home/Christine/bigprogram.sh
/sbin/pam_timestamp_check
/sbin/netreport
/sbin/unix_chkpwd
[...]
$
但当我尝试的时候,
me@host:~$ sudo find / -perm +6000 -type f
find: invalid mode ‘+6000’
这本书是2015年版LPIC-1:Linux 专业学院认证学习指南:Christine
如何启用+6000
Ubuntu 18.10
答案1
根据手册页寻找 烫发 +模式已弃用
-perm +mode
This is no longer supported (and has been deprecated since 2005). Use -perm /mode instead.
你可以试试:-
find / -perm /6000 -type f