
How to use the command 'finger' (with examples)
The finger command is a utility in Unix-like operating systems that provides users with information about other system users. It’s typically used to obtain details about currently logged-in users, as well as specific information about a particular user, including full name, terminal location, login time, and more. By utilizing different flags and options, users can customize the information displayed by the finger command to suit their needs.
Use case 1: Display information about currently logged-in users
Code:
finger
Motivation:
In a multi-user environment, it’s often helpful to see who is currently logged into the system. Whether you’re a system administrator looking to perform maintenance or a user checking if a colleague is available, the finger command provides a quick overview of all currently logged-in users.
Explanation:
- By running
fingerwithout any additional arguments, the command defaults to showing information about all users who are currently logged into the system. This information typically includes their username, the terminal they are using, the login time, and idle time.
Example Output:
Login Name TTY Idle Login Time Office Phone
alice Alice Smith pts/1 09:50 1-1234
bob Bob Johnson pts/2 5:00 10:15
Use case 2: Display information about a specific user
Code:
finger username
Motivation:
There may be times when you need detailed information about a particular user, such as their login status or contact details. Whether you’re trying to ascertain the availability of a colleague or troubleshoot an account, querying a specific user with finger offers instant access to relevant data.
Explanation:
- Replace
usernamewith the actual username of the user you wish to inquire about. Thefingercommand will then fetch and display information specific to that user, including their home directory, shell, and more.
Example Output:
Login: alice Name: Alice Smith
Directory: /home/alice Shell: /bin/bash
Last login: No recent logins
Use case 3: Display the user’s login name, real name, terminal name, and other information
Code:
finger -s
Motivation:
For a quick summary of user information, the -s option provides a streamlined display of details regarding each user currently logged into the system. It effectively balances brevity with the inclusion of relevant user data for easy reading.
Explanation:
- The
-sflag stands for “short” and instructs thefingercommand to display the login name, real name, terminal name, along with the login time and idle time in a concise format.
Example Output:
Login Name TTY Idle Login Time
alice Alice Smith pts/1 09:50
bob Bob Johnson pts/2 5:00 10:15
Use case 4: Produce multiline output format displaying user’s information
Code:
finger -l
Motivation:
When detailed user information is required, the -l option provides a more comprehensive view of user accounts. This format is particularly beneficial to system administrators or support staff who require an in-depth understanding of users’ environments.
Explanation:
- The
-lflag stands for “long” and produces a multiline output that includes all the information available throughfinger. This may encompass the user’s home directory, home phone number, login shell, and mail status among other details, offering a more detailed report.
Example Output:
Login: alice Name: Alice Smith
Directory: /home/alice Shell: /bin/bash
On since Wed Sep 15 09:50 (PDT) on pts/1 from 192.168.0.1
No Mail.
No Plan.
Use case 5: Prevent matching against user names
Code:
finger -m username
Motivation:
When dealing with a system that has users with similar names or aliases, the -m flag can help in targeting the query to a login name strictly. This eliminates confusion and ensures the command doesn’t mistakenly match user names that might resemble the desired login name.
Explanation:
- The
-moption tellsfingerto match based solely on login names, avoiding any potential confusion from similarly named accounts by using real names. This is particularly useful in larger networks where naming conventions might lead to accidental matches.
Example Output:
Login: alice Name: Alice Smith
Directory: /home/alice Shell: /bin/bash
No recent logins
Conclusion
The finger command is a versatile tool for extracting user information in Unix-like systems. Its various options allow users to either collect a quick snapshot of current user activity or delve into detailed data about specific users. Whether for administrative purposes, user support, or simple inquiry, the finger command offers valuable insights into user activity and setups.

