Open In App

write command in Linux with Examples

Last Updated : 15 Apr, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

write command in Linux is used to send a message to another user. The write utility allows a user to communicate with other users, by copying lines from one user’s terminal to others. When you run the write command, the user you are writing to gets a message of the form:

Message from yourname@yourhost on yourtty at hh:mm ...

Any further lines the user enter will be copied to the specified user’s terminal. If the other user wants to reply, they must run write as well. When you are done, type an end-of-file or interrupt character. The other user will see the message ‘EOF’ indicating that the conversation is over.

Syntax:

write user [tty]

write command without any option: It will print the general syntax of the write. With the help of this, the user will get a generalized idea about how to use this command since there nothing like help option for the write command.

Example:

  • write metal: In this command metal is the name of another user that I’m logged in with and when I execute this command with a message I get a notification on my terminal showing that I received a message from another user.
    write metal

    Explanation: So the basic use case of the write command is to send messages to the users on the other terminal as a way to interact. Once you enter write command and type your message then every user that is logged in will get a pop-up message. You will also receive a message from this particular user so if any other user wants to broadcast his message he can do the same.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads