summaryrefslogtreecommitdiff
path: root/sys/src/cmd/upas/fs/extra/fd2path.c
blob: 5fe3ce708b2a7d25e7dd3ef2c589aed9ede679d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <u.h>
#include <libc.h>

void
usage(void)
{
	fprint(2, "usage: fd2path path ...\n");
	exits("usage");
}

void
main(int argc, char **argv)
{
	char buf[1024];
	int fd;

	ARGBEGIN{
	default:
		usage();
	}ARGEND

	if(argc == 0){
		if(fd2path(0, buf, sizeof buf) != -1)
			fprint(2, "%s\n", buf);
	}else for(; *argv; argv++){
		fd = open(*argv, OREAD);
		if(fd != -1 && fd2path(fd, buf, sizeof buf) != -1)
			fprint(2, "%s\n", buf);
		close(fd);
	}
	exits("");
}