Linux shell finger 命令
Linux shell finger 命令可以让使用者查询一些其他使用者的资料。
finger
finger 命令可以让使用者查询一些其他使用者的资料
会列出来的资料有:
- Login Name
- User Name
- Home directory
- Shell
- Login status
- mail status
- .plan
- .project
- .forward
其中 .plan
、.project
和 .forward
就是使用者在他的 Home Directory 里的 .plan , .project 和 .forward 等档案里的资料。
如果没有就没有。
finger 指令并不限定于在同一服务器上查询,也可以寻找某一个远端服务器上的使用者。
只要给一个像是 E-mail address 一般的地址即可。
使用权限: 所有用户。
finger 命令语法格式
finger [options] user[@address]
选项
- -l 多行显示。
- -s 单行显示。这个选项只显示登入名称、真实姓名、终端机名称、闲置时间、登入时间、办公室号码及电话号码。如果所查询的使用者是远端服务器的使用者,这个选项无效。
范例
列出当前登录用户的相关信息
[root@localhost ~]# finger -l Login: root Name: cky Directory: /root Shell: /bin/bash On since Wed Sep 20 18:56 (CST) on tty1 1 hour 5 minutes idle On since Wed Sep 20 22:23 (CST) on pts/0 from 192.168.0.100 7 seconds idle On since Wed Sep 20 19:51 (CST) on pts/1 from 192.168.0.100 2 hours 3 minutes idle No mail. No Plan. [root@localhost ~]#
显示指定用户信息
[root@localhost ~]# finger -m cky Login: cky Name: Directory: /home/cky Shell: /bin/bash Last login Wed Sep 20 22:32 (CST) on pts/0 No mail. No Plan. [root@localhost ~]#
显示远程用户信息
# finger -m root@192.168.0.113
下列指令可以查询本机管理员的资料:
[root@localhost ~]# finger root Login: root Name: cky Directory: /root Shell: /bin/bash On since Wed Sep 20 18:56 (CST) on tty1 1 hour 7 minutes idle On since Wed Sep 20 22:40 (CST) on pts/0 from 192.168.0.100 7 seconds idle On since Wed Sep 20 19:51 (CST) on pts/1 from 192.168.0.100 2 hours 6 minutes idle No mail. No Plan. [root@localhost ~]#