blob: 762f53b728d3f9c0302fa6a83f19a690ef153f20 [file] [log] [blame]
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +01001/* vi: set sw=4 ts=4: */
2/*
3 * wall - write a message to all logged-in users
4 * Copyright (c) 2009 Bernhard Reutner-Fischer
5 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +01007 */
8
Pere Orga5bc8c002011-04-11 03:29:49 +02009//usage:#define wall_trivial_usage
10//usage: "[FILE]"
11//usage:#define wall_full_usage "\n\n"
12//usage: "Write content of FILE or stdin to all logged-in users"
13//usage:
14//usage:#define wall_sample_usage
15//usage: "echo foo | wall\n"
16//usage: "wall ./mymessage"
17
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +010018#include "libbb.h"
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +010019
20int wall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
21int wall_main(int argc UNUSED_PARAM, char **argv)
22{
23 struct utmp *ut;
24 char *msg;
25 int fd = argv[1] ? xopen(argv[1], O_RDONLY) : STDIN_FILENO;
26
27 msg = xmalloc_read(fd, NULL);
28 if (ENABLE_FEATURE_CLEAN_UP && argv[1])
29 close(fd);
30 setutent();
31 while ((ut = getutent()) != NULL) {
32 char *line;
33 if (ut->ut_type != USER_PROCESS)
34 continue;
35 line = concat_path_file("/dev", ut->ut_line);
36 xopen_xwrite_close(line, msg);
37 free(line);
38 }
39 if (ENABLE_FEATURE_CLEAN_UP) {
40 endutent();
41 free(msg);
42 }
43 return EXIT_SUCCESS;
44}