summaryrefslogtreecommitdiffstats
path: root/usr.bin/lastcomm/lastcomm.c
diff options
context:
space:
mode:
authordds <dds@FreeBSD.org>2007-04-04 16:04:58 +0000
committerdds <dds@FreeBSD.org>2007-04-04 16:04:58 +0000
commitf82a2a730c0a76d15214dcad8115de7506581664 (patch)
treef9e71630a3000b036430d3b9a2976ddfe9a0b180 /usr.bin/lastcomm/lastcomm.c
parent890976965dc9f0e43608a4ef1ea5fc2e9fcd17ea (diff)
downloadFreeBSD-src-f82a2a730c0a76d15214dcad8115de7506581664.zip
FreeBSD-src-f82a2a730c0a76d15214dcad8115de7506581664.tar.gz
A dash as an argument to the -f option will now cause lastcomm to
read data from the standard input. This allows tail -f to pipe data to lastcomm, and thereby real-time monitoring of executed commands. The manual page includes the exact incantation. MFC after: 2 weeks
Diffstat (limited to 'usr.bin/lastcomm/lastcomm.c')
-rw-r--r--usr.bin/lastcomm/lastcomm.c49
1 files changed, 31 insertions, 18 deletions
diff --git a/usr.bin/lastcomm/lastcomm.c b/usr.bin/lastcomm/lastcomm.c
index 6672e8f..c513aec 100644
--- a/usr.bin/lastcomm/lastcomm.c
+++ b/usr.bin/lastcomm/lastcomm.c
@@ -132,27 +132,40 @@ main(int argc, char *argv[])
argc -= optind;
argv += optind;
- /* Open the file. */
- if ((fp = fopen(acctfile, "r")) == NULL || fstat(fileno(fp), &sb))
- err(1, "could not open %s", acctfile);
-
- /*
- * Round off to integral number of accounting records, probably
- * not necessary, but it doesn't hurt.
- */
- size = sb.st_size - sb.st_size % sizeof(struct acct);
-
- /* Check if any records to display. */
- if ((unsigned)size < sizeof(struct acct))
- exit(0);
+ if (strcmp(acctfile, "-") == 0)
+ fp = stdin;
+ else {
+ /* Open the file. */
+ if ((fp = fopen(acctfile, "r")) == NULL ||
+ fstat(fileno(fp), &sb))
+ err(1, "could not open %s", acctfile);
+
+ /*
+ * Round off to integral number of accounting records,
+ * probably not necessary, but it doesn't hurt.
+ */
+ size = sb.st_size - sb.st_size % sizeof(struct acct);
+
+ /* Check if any records to display. */
+ if ((unsigned)size < sizeof(struct acct))
+ exit(0);
+ }
do {
int rv;
- size -= sizeof(struct acct);
- if (fseeko(fp, size, SEEK_SET) == -1)
- err(1, "seek %s failed", acctfile);
- if ((rv = fread(&ab, sizeof(struct acct), 1, fp)) != 1)
- err(1, "read %s returned %d", acctfile, rv);
+
+ if (fp != stdin) {
+ size -= sizeof(struct acct);
+ if (fseeko(fp, size, SEEK_SET) == -1)
+ err(1, "seek %s failed", acctfile);
+ }
+
+ if ((rv = fread(&ab, sizeof(struct acct), 1, fp)) != 1) {
+ if (feof(fp))
+ break;
+ else
+ err(1, "read %s returned %d", acctfile, rv);
+ }
if (ab.ac_comm[0] == '\0') {
ab.ac_comm[0] = '?';
OpenPOWER on IntegriCloud