getent命令帮助用户administrative databases中查找相关信息。administrative databases包括:

    • passwd – can be used to confirm usernames, userids, home directories and full names of your users
    • group – all the information about Unix groups known to your system
    • services – all the Unix services configured on your system
    • networks – networking information – what networks your system belongs to
    • protocols – everything your system knows about network protocols

一般语法

getent database [key ...]

getent会在上面数据库中产找key对应的value

举例

查找hostname对应的IP

ubuntu$ getent hosts ubuntu
127.0.1.1       ubuntu
192.168.0.2     ubuntu
View Code

相关文章:

  • 2021-07-04
  • 2021-12-19
  • 2021-04-19
  • 2022-01-02
  • 2022-02-12
  • 2021-05-26
  • 2021-10-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2021-12-23
  • 2021-12-23
  • 2021-09-19
相关资源
相似解决方案