Skip to content
Related Articles
Open in App
Not now

Related Articles

tty command in Linux with examples

Improve Article
Save Article
  • Difficulty Level : Easy
  • Last Updated : 19 Feb, 2021
Improve Article
Save Article

Linux operating system represents everything in a file system, the hardware devices that we attach are also represented as a file. The terminal is also represented as a file. There a command exists called tty which displays information related to terminal. The tty command of terminal basically prints the file name of the terminal connected to standard input. tty is short of teletype, but popularly known as a terminal it allows you to interact with the system by passing on the data (you input) to the system, and displaying the output produced by the system.

Syntax:

tty [OPTION]....

Options:

  • -s, ––silent, ––quiet : Prints nothing, only returns an exit status.
  • ––help : It will display the help message and exit.
  • ––version : Prints the version information and exits.

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!