diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-19 16:37:00 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-19 16:37:00 -0800 |
commit | ec158dea0bdc8bf4767fe048056178a823a2033b (patch) | |
tree | b25b0914610dbbe36b363231394669d1d4b7709a | |
parent | 64db372b4988e4862acb328492b7bbe14851ebe0 (diff) |
Add -V option to print version number
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | man/sessreg.man | 3 | ||||
-rw-r--r-- | sessreg.c | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/man/sessreg.man b/man/sessreg.man index bb1d9c8..3d351bd 100644 --- a/man/sessreg.man +++ b/man/sessreg.man @@ -38,6 +38,7 @@ sessreg \- manage utmp/wtmp entries for non-init clients [-s \fIslot-number\fP] [-x \fIXservers-file\fP] [-t \fIttys-file\fP] +[-V] [-a] [-d] \fIuser-name\fP @@ -123,6 +124,8 @@ is found. .IP "\fB-t\fP \fIttys-file\fP" This specifies an alternate file which the \fI-x\fP option will use to count the number of terminal sessions on a host. +.IP "\fB-V\fP" +This option causes the command to print its version and exit. .IP "\fB-a\fP" This session should be added to utmp/wtmp. .IP "\fB-d\fP" @@ -136,7 +136,7 @@ usage (int x) " [-L lastlog-file]" #endif "\n" - " [-t ttys-file] [-l line-name] [-h host-name]\n" + " [-t ttys-file] [-l line-name] [-h host-name] [-V]\n" " [-s slot-number] [-x servers-file] user-name\n", program_name, program_name); exit (1); @@ -241,6 +241,9 @@ main (int argc, char **argv) case 'd': dflag++; break; + case 'V': + printf("%s\n", PACKAGE_STRING); + exit (0); default: usage (1); } |