Forrest logo
tool overview
On this page you find all important commands for the CLI tool finger. If the command you are looking for is missing please ask our AI.

finger

The finger command is a tool used in command-line interfaces to gather information about users on a remote system.

The finger command originated in the early days of Unix and was primarily used to get details about users logged into a system, such as their login name, full name, login time, idle time, office location, and contact information. It provides a quick way to check if a user is actively using the system or retrieve basic information about them.

Typically, the finger command is used by entering "finger" followed by the username or user's email address of the user you want information about. The output then displays the requested user information if available.

However, due to privacy and security concerns, the finger command is now rarely used on modern systems. Most operating systems disable the finger service by default to prevent unauthorized access to user information.

List of commands for finger:

  • finger:tldr:0632a finger: Display information about a specific user.
    $ finger ${user}@${host}
    try on your machine
    explain this command
  • finger:tldr:412e4 finger: Prevent matching against user's names and only use login names.
    $ finger -m
    try on your machine
    explain this command
  • finger:tldr:449ab finger: Display information in a longer format.
    $ finger ${user}@${host} -l
    try on your machine
    explain this command
  • finger:tldr:4cd31 finger: Display information about all users on the specified host.
    $ finger @${host}
    try on your machine
    explain this command
  • finger:tldr:c3102 finger: Display help information.
    $ finger /?
    try on your machine
    explain this command
  • finger:tldr:ce47e finger: Display the user's login name, real name, terminal name, and other information.
    $ finger -s
    try on your machine
    explain this command
  • finger:tldr:dad43 finger: Produce multiline output format displaying same information as `-s` as well as user's home directory, home phone number, login shell, mail status, etc..
    $ finger -l
    try on your machine
    explain this command
  • finger:tldr:e7efd finger: Display information about currently logged in users.
    $ finger
    try on your machine
    explain this command
  • finger:tldr:f8a1c finger: Display information about a specific user.
    $ finger ${username}
    try on your machine
    explain this command
tool overview