Programming C: Find out name of a terminal
Recently I was writing a small experimental program under GNU/Linux. My tiny application needed input from terminal.
I need to find out name of a terminal. Further, I need to know if a particular file descriptor is a tty device or not.
I found ttyname() function which accepts an open file descriptor as its input argument and returns a pointer to the null-terminated pathname of the terminal device.
But how did I know if descriptor refer to a terminal is tty? Simply use C function isatty(desc) which returns 1 if desc is an open descriptor connected to a terminal and 0 else.
Desc can be any one of the following:
- 0 : Standard input (like keyboard)
- 1 : Standard output (like screen)
- 2 : Standard error (like screen)
Under normal circumstances every Linux program has three streams opened for it when it starts up, one for input, one for output, and one for printing diagnostic or error messages. These are typically attached to the user's terminal but might instead refer to files or other devices, depending on what the parent process chose to set up.
On program startup, the integer file descriptors associated with the streams stdin, stdout, and stderr are 0, 1, and 2, respectively.
Here is sample C guesstty.c program listing:
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv){
int t,fd;
if ( argc == 1 ){
printf("Syntax: %s 0,1,2\n",argv[0]);
exit(EXIT_SUCCESS);
}
fd = atoi(argv[1]);
t = isatty(fd);
if( t )
printf("fd is %d, which is a tty\n",fd);
else
printf("fd is %d, which isn't a tty\n",fd);
if ( t == 1 ) printf("tty name is %s\n",ttyname(t));
return EXIT_SUCCESS;
}
The above code can tell when the standard input is redirected to take data from a file or when the data is coming from terminal.
Compile and run program:
[code]$ make guesstty.c[/code]
OR
[code]$ cc guesstty.c -o guesstty [/code]
Sample run:
[code]$ ./guesstty 0[/code]Output:
fd is 0, which is a tty
tty name is /dev/pts/1
[code]$ ./guesstty 0
Output:
fd is 0, which isn't a tty
References:
- ttyname(3)
- isatty(3)
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in other helpful articles:
- Bjarne Stroustrup explains why software sucks (bad)
- History and Culture of Unix Programming - The Art of Unix Programming
- Python Network Programming howto
- Download advanced Linux programming book PDF version
- Unix Programming faqs, howto resources on Web and books
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!


Recent Comments
Yesterday ~ 3 Comments
Yesterday ~ 1 Comment
Yesterday ~ 9 Comments
Yesterday ~ 13 Comments
Yesterday ~ 3 Comments