1
|
mv /home/test /home/test2
|
1
2
|
[root@xpleaf ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
|
033 | 044 | |
文件权限 | -|rw-|r--|r-- | -|rw-|-w-|-w- |
目录权限 | -|rwx|r--|r-- | -|rwx|-wx|-wx |
1
2
|
[root@xpleaf ~]# ls -l /usr/bin/passwd
-rwsr-xr-x.
1
root root
30768
2
月
22
2012
/usr/bin/passwd
|
1
2
|
[root@xpleaf ~]# file /usr/bin/passwd
/usr/bin/passwd: setuid ELF
64
-bit LSB shared object, x86-
64
, version
1
(SYSV), dynamically linked (uses shared libs),
for
GNU/Linux
2.6
.
18
, stripped
|
1
2
|
[root@xpleaf ~]# lsattr /usr/bin/passwd
-------------e- /usr/bin/passwd
|
1
2
|
[root@xpleaf ~]# find / -perm +
4000
输出省略
|
4755 | 查找的文件权限必须为:-|rws|r-x|r-x |
-4755 | 查找的文件权限需要满足:文件的权限至少要与4755即-|rws|r-x|r-x相同,或权限比其更多 |
+4755 | 查找的文件权限需要满足:文件的权限最多只能与4755即-|rws|r-x|r-x相同,或权限比其更少 |
1
2
3
|
[root@xpleaf ~]# find /etc -size +50k -size -100k -exec ls -l {} \;
-rw-r--r--.
1
root root
88371
5
月
11
22
:
24
/etc/termcap
-rw-r--r--.
1
root root
65536
1
月
13
2010
/etc/pki/nssdb/cert8.db
|
1
2
3
|
[root@xpleaf ~]# find /etc -size +50k -a -size -100k -exec ls -l {} \;
-rw-r--r--.
1
root root
88371
5
月
11
22
:
24
/etc/termcap
-rw-r--r--.
1
root root
65536
1
月
13
2010
/etc/pki/nssdb/cert8.db
|
1
2
3
|
[root@xpleaf ~]# find /etc -size +50k -a -size -100k | xargs ls -l
-rw-r--r--.
1
root root
65536
1
月
13
2010
/etc/pki/nssdb/cert8.db
-rw-r--r--.
1
root root
88371
5
月
11
22
:
24
/etc/termcap
|
1
2
3
4
|
[root@xpleaf ~]# find /etc -size +50k ! -user oldboy -exec ls -l {} \;
-rw-r--r--.
1
root root
88371
5
月
11
22
:
24
/etc/termcap
-rw-------.
1
root root
125811
11
月
23
2013
/etc/ssh/moduli
省略输出
|
1
2
3
4
|
[root@xpleaf ~]# find /etc -size +50k -not -user oldboy -exec ls -l {} \;
-rw-r--r--.
1
root root
88371
5
月
11
22
:
24
/etc/termcap
-rw-------.
1
root root
125811
11
月
23
2013
/etc/ssh/moduli
省略输出
|
1
2
3
4
5
|
[root@xpleaf ~]# find /etc -size +1500k -o -size 0k
/etc/environment
/etc/selinux/targeted/modules/active/netfilter_contexts
/etc/selinux/targeted/modules/active/policy.kern
省略输出
|