The “finger” Command in Linux [6 Practical Examples]

The finger command is a pretty straightforward command in Linux. It is used to display users’ information on a system in Linux. In this section, you will learn the syntax, options, and practical applications of the command in Linux.

A. Description

The major objective of the finger command is to display the users’ login information on a system in Linux. This command helps to display the idle status of the user. It can also be used to display the user’s plan and project in Linux. The information provided by the finger command may vary depending on the system configuration in Linux.

B. Syntax

The syntax of the finger command in Linux is simple. It includes the finger command, options & username. And the syntax is as shown:

finger [OPTION]... [USERNAME]...
Note: In the syntax above, OPTION is enclosed by a square bracket and followed by 3 dots representing that more than one option can be used simultaneously. Besides,3 dots after USERNAME suggest that you can specify multiple users at a time.

C. Options

A few options are available for the finger command. I have mentioned the most used options of the command here. Yet, you can look into the man page for the finger command to know more about its options.

man finger

Useful Options

  • -p, Shows information except for the user’s plan or project.
  • -s, Displays idle status with login information.
  • -m, Prevents matching of user names.
Note: The options in Linux CLI (Command Line Interface) are case-sensitive, so be careful when you use them.

How to Install the “finger” command in Linux

It is really easy to install the finger command in Linux. To install the finger command follow the steps below:

Steps to Follow >

➊ Just like the image below, open up the Ubuntu Terminal.

➋ Copy the following command in the command prompt:

sudo apt-get install finger

➌ Then, press the ENTER key.

❹ As you can see in the image, you need to type the password of your user account in the command prompt.

➎ After, tap the ENTER button.

After processing a little bit, your finger command will be ready to use in Linux.How to install finger command in Linux

Practical Examples of the “finger” Command in Linux

The finger command in Linux is a user-friendly command which displays users’ login information in the terminal. Here you will get to know some useful examples of the finger command.

Example 1: Display Information About Currently Logged-in User

The finger command displays information about the currently logged-in user in Linux. The device is currently logged in as the user sylvie. To do the same you can follow the procedure below:

Steps to Follow >

➊ Initially open the Ubuntu Terminal.

➋ Now, execute the command below in the command prompt:

finger

➌ Then, tap the ENTER button.

Output >

As you can see, the output is displaying the information about the currently logged-in user which is sylvie.Display Information About Currently Logged-in User


Similar Readings


Example 2: Display Information About Specific User

The finger command can be used to display information about the specific user in Linux. Here I am specifying the user sylvie. You can also do this by following the process below:

Steps to Follow >

➊ To start launch the Ubuntu Terminal.

➋ Now, run the command below in the command prompt:

finger sylvie
Note: You can specify any username here.

➌ Then, hit the ENTER key.

Output >

As you can see in the image below, the output is displaying the information about the user sylvie.Display Information About Specific User

Example 3: Get Idle Status Along With the Login Details of Specific User

To get the idle status along with the login details of the specific user, the finger command can be used in Linux. Here I am specifying the user sylvie. But You can specify any username here. To do the same you can follow the instructions below:

Steps to Follow >

➊ Firstly open the Terminal in Ubuntu.

➋ Type the command below in the command prompt:

finger -s sylvie

➌ Finally, strike the ENTER button.

Output >

As you can see in the following image, the output is showing the idle status along with the login details of the user sylvie.Get Idle Status Along With the Login Details of Specific User


Similar Readings


Example 4: View the User’s Plan With Other Information Using the “finger” command in Linux

You can view the user’s plan with the other information of the specific user using the finger command in Linux. Here I am mentioning the user sylvie to view its plan. To do the same you can follow the procedure below:

Steps to Follow >

➊ At first launch the Terminal in Ubuntu.

➋ For creating a plan, write the command below in the command prompt:

echo "New Plan" > ~/.plan

➌ Now, press the ENTER key.

❹ After that, type the command below in the command prompt:

finger sylvie
Note: You can mention any user here.

❺ Finally, tap the ENTER button.

Output >

In the following image, you can view the user’s plan along with other information about the user sylvie.View the User's Plan With Other Information Using the "finger" command in Linux


Similar Readings


Example 5: Show User’s Project With Other Information

Using the finger command in Linux the user’s project can be shown with the other information of the specific user. Here I am specifying the user sylvie to view its project. You can specify any username here. To do the same you can follow the steps below:

Steps to Follow >

➊ Launch the Ubuntu Terminal.

➋ For creating a project, copy the command below in the command prompt:

echo "New Project" > ~/.plan

➌ Now, tap the ENTER button.

❹ After that, run the command below in the command prompt:

finger sylvie

❺ Finally, hit the ENTER key.

Output >

Finally, in the image below, you can view the user’s project along with other information about the user sylvie.Show User's Project With Other Information


Similar Readings


Example 6: Display Information Except for Plan & Project Using the “finger” command in Linux

For displaying the information of the specific user except for plan & project, the finger command can be used in Linux. Here I am specifying the user sylvie. You can also do this by following the process below:

Steps to Follow >

➊ Open the Terminal in Ubuntu.

➋ Copy the following command in the command prompt:

finger -p sylvie

➌ After that, press the ENTER button.

Output >

Finally, in the image, the output does not show the plan & project of the user sylvie.Display Information Except for Plan & Project Using the "finger" command in Linux

Conclusion

As you’ve seen in this section, the finger command holds important functions in Linux. You’ve also got to know the syntax, some functional options, and the practical applications of this command. To excel in Linux, regularly exercise command usage and its applications.


Similar Readings

Rate this post
LINUX
FUNDAMENTALS
A Complete Guide for Beginners Enroll Course Now
icon linux
Jannatul Ferdousi Sylvie

Hi there! This is Jannatul Ferdousi Sylvie. I am one of the Linux Content Developer Executives at Softeko. I live in Dhaka, Bangladesh. I have completed my BSc. in Software Engineering from American International University-Bangladesh. You can see my projects in the GitHub account. I love traveling, shopping, cooking, and gardening. Read Full Bio

Leave a Comment