File: manpages_hyphen2minus

package info (click to toggle)
tripwire 2.4.3.7-4
  • links: PTS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates
  • size: 7,220 kB
  • sloc: cpp: 57,898; sh: 6,006; perl: 2,735; yacc: 497; makefile: 438; lex: 356; ansic: 10
file content (1640 lines) | stat: -rw-r--r-- 56,857 bytes parent folder | download | duplicates (4)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
Description: Change manpages to use dashes '-' instead of '\(hy' to fix search
 on UTF-8 terminals.
Bug-Debian: http://bugs.debian.org/251652
Author: Nicolas François <nicolas.francois@centraliens.net>

--- a/man/man4/twconfig.4
+++ b/man/man4/twconfig.4
@@ -51,7 +51,7 @@
 During installation, a signed \fITripwire\fP configuration file \fItw.cfg\fP will be created in the \fI/etc/tripwire\fP directory, and a plain text copy of this configuration file \fItwcfg.txt\fP will be created in the same directory.
 .PP
 The configuration file is modified using the
-.B twadmin\ \(hy\(hycreate\(hycfgfile
+.B twadmin\ \-\-create\-cfgfile
 command.  With this command, the user can designate
 an existing plain text file as the current configuration file.
 Using the current site key and passphrase, the new configuration file
@@ -89,7 +89,7 @@
 .Fi
 .PP
 Variable names are case-sensitive, and may contain all alphanumeric
-characters, underscores, the characters "+\(hy@:", and the period.
+characters, underscores, the characters "+\-@:", and the period.
 Two variables are predefined in the configuration file, and may
 not be changed.  \f(CWHOSTNAME\fP is the
 unqualified hostname that \fITripwire\fP is running on, and
@@ -104,9 +104,9 @@
 .if n .in 0
 POLFILE         Default = /etc/tripwire/tw.pol
 DBFILE          Default = /var/lib/tripwire/$(HOSTNAME).twd
-REPORTFILE      Default = /var/lib/tripwire/report/$(HOSTNAME)-$(DATE).twr
+REPORTFILE      Default = /var/lib/tripwire/report/$(HOSTNAME)\-$(DATE).twr
 SITEKEYFILE     Default = /etc/tripwire/site.key
-LOCALKEYFILE    Default = /etc/tripwire/$(HOSTNAME)-local.key
+LOCALKEYFILE    Default = /etc/tripwire/$(HOSTNAME)\-local.key
 .Fi
 .if n .in +\n(Tiu 
 .SS Other Variables
@@ -161,7 +161,7 @@
 the rules for all directory inodes:
 .ft CW
 .ps \n(.s-1
-\(hysnacmblCMSH
+\-snacmblCMSH
 .ps \n(.s+1
 .ft R
 .br
@@ -205,12 +205,12 @@
 Initial value:  \fItrue\fP
 .IP \f(CWREPORTLEVEL\fP
 Specifies the default level of report produced by the \fBtwprint
-\(hy\(hyprint\(hyreport\fP mode. Valid values for this option are 0 to
+\-\-print\-report\fP mode. Valid values for this option are 0 to
 4. The report
-level specified by this option can be overridden with the (\fB\(hyt\fP\ or\ \fB\(hy\(hyreport\(hylevel\fP) option on the command line. If
+level specified by this option can be overridden with the (\fB\-t\fP\ or\ \fB\-\-report\-level\fP) option on the command line. If
 this variable is not included in the configuration file, the default
 report level is 3.  Note that only reports printed using the
-\fBtwprint\ \(hy\(hyprint\(hyreport\fP mode are affected by this
+\fBtwprint\ \-\-print\-report\fP mode are affected by this
 parameter; reports displayed by other modes and other commands
 are not affected.
 .br
@@ -264,16 +264,16 @@
 a small possibility that a
 .I Tripwire
 report would contain such a line, the mail program specified must be
-able to ignore lines that consist of a single period (the \fB-oi\fP
+able to ignore lines that consist of a single period (the \fB\-oi\fP
 option to sendmail produces this behavior).
 .br
-Initial value:  \fI/usr/lib/sendmail -oi -t\fP
+Initial value:  \fI/usr/lib/sendmail \-oi \-t\fP
 .IP \f(CWEMAILREPORTLEVEL\fP
 Specifies the default level of report produced by the \fBtripwire
-\(hy\(hycheck\fP mode email report.  Valid values for this option are 0
+\-\-check\fP mode email report.  Valid values for this option are 0
 to 4. The
 report level specified by this option can be overridden with the
-(\fB\(hyt\fP\ or\ \fB\(hy\(hyemail\(hyreport\(hylevel\fP) option on the
+(\fB\-t\fP\ or\ \fB\-\-email\-report\-level\fP) option on the
 command\(hyline. If this variable is not included in the configuration
 file, the default report level is 3.
 .br
--- a/man/man4/twpolicy.4
+++ b/man/man4/twpolicy.4
@@ -59,16 +59,16 @@
 as a reference during policy file creation.
 .PP
 A new policy file is first created using the
-\fBtwadmin\ \(hy\(hycreate\(hypolfile\fP
+\fBtwadmin\ \-\-create\-polfile\fP
 command.  With this command, the
 user can designate an existing plain text file as the current policy
 file.  Using the current site key and passphrase, the new configuration
 file is encoded, signed and saved.
 .PP
 Once the initial policy file has been generated, any changes should be
-made with the \fBtripwire\ \(hy\(hyupdate\(hypolicy\fP command, rather
+made with the \fBtripwire\ \-\-update\-policy\fP command, rather
 than by simply overwriting the policy file with the
-\fBtwadmin\ \(hy\(hycreate\(hypolfile\fP command.  This is an important
+\fBtwadmin\ \-\-create\-polfile\fP command.  This is an important
 .ie n distinction\(hy\(hywhen
 .el distinction\(emwhen
 a new policy file is created, the \fITripwire\fP
@@ -86,7 +86,7 @@
 .PP
 .Nf
 # This is a comment.
-/bin  ->  $(ReadOnly);  # A comment can go here, too.
+/bin  \->  $(ReadOnly);  # A comment can go here, too.
 .Fi
 .\"
 .SS Rules
@@ -103,14 +103,14 @@
 The format for a normal rule is:
 .br
 .in +\n(Nip 
-\fIobject_name\fP    ->    \fIproperty_mask\fP;	
+\fIobject_name\fP    \->    \fIproperty_mask\fP;
 .in
 .PP
 where the \fIobject_name\fP is the fully qualified pathname for a
 directory or file, and \fIproperty_mask\fP
 specifies what properties of an object to examine or ignore.
-The '\(hy>' token separates the pathname and the property mask.
-Whitespace must separate the object name and '\(hy>' token.
+The '\->' token separates the pathname and the property mask.
+Whitespace must separate the object name and '\->' token.
 A semicolon must terminate the rule.  If the
 pathname specified is a directory, the directory and all of its
 descendants will be scanned with the indicated property mask.  If the
@@ -119,16 +119,16 @@
 .PP
 .Nf
 # Defines Tripwire behavior for entire /bin directory tree.
-/bin   ->   $(ReadOnly);
+/bin   \->   $(ReadOnly);
 
 # Defines Tripwire behavior for a single file.  In this case,
 # Tripwire watches for all properties of hostname.hme0.
-/etc/hostname.hme0    ->    $(IgnoreNone) -ar;
+/etc/hostname.hme0    \->    $(IgnoreNone) \-ar;
 
 # Scan the entire /etc directory tree using mask1, except the
 # file /etc/passwd, which should be scanned using mask2.
-/etc        ->  $(mask1);
-/etc/passwd ->  $(mask2);
+/etc        \->  $(mask1);
+/etc/passwd \->  $(mask2);
 .Fi
 .PP
 Only one rule may be associated with any given object.  If any object
@@ -137,8 +137,8 @@
 .PP
 .Nf
 # This is an example of an illegal construct.
-/usr/bin   ->   $(mask3);
-/usr/bin   ->   $(mask4);
+/usr/bin   \->   $(mask3);
+/usr/bin   \->   $(mask4);
 .Fi
 .PP   
 .\"
@@ -171,9 +171,9 @@
 Each rule in the policy file must have a property mask.  Examples:
 .PP
 .Nf
-/etc        ->    $(IgnoreAll);     #valid property mask.
-/etc        ->    +p-p;             #valid property mask.
-/etc        ->    ;                 #invalid property mask.
+/etc        \->    $(IgnoreAll);     #valid property mask.
+/etc        \->    +p\-p;             #valid property mask.
+/etc        \->    ;                 #invalid property mask.
 .Fi
 .PP
 Characters in a property mask without a preceding plus or minus sign
@@ -186,7 +186,7 @@
 # All three of the following are equivalent.
 +p+n
 pn
-pn-g
+pn\-g
 .Fi
 .PP
 Characters used in property masks, with descriptions:
@@ -230,7 +230,7 @@
 !/etc/init.d;   
 # The directory /etc/init.d will not be scanned.
 
-/etc   ->   $(ReadOnly);
+/etc   \->   $(ReadOnly);
 !/etc/rc.d;
 !/etc/mnttab;
 # Scan all of /etc, but do not scan two particular  
@@ -245,11 +245,11 @@
 using the following syntax:
 .br
 .in +\n(Nip
-\fIobject_name\fP -> \fIproperty_mask\fP (\fIrule attribute\fP = \fIvalue\fP);
+\fIobject_name\fP \-> \fIproperty_mask\fP (\fIrule attribute\fP = \fIvalue\fP);
 .in
 For example:
 .Nf
-/usr/lib -> $(ReadOnly) (emailto = admin@foo.com, severity = 80);
+/usr/lib \-> $(ReadOnly) (emailto = admin@foo.com, severity = 80);
 #This rule will notify the admin if any violations of the 
 #rule occur and designate the severity as 80.
 .Fi
@@ -270,13 +270,13 @@
 .Nf
 (emailto = admin@foo.com, severity = 80)
 {
-     /usr/lib  ->  $(ReadOnly);
+     /usr/lib  \->  $(ReadOnly);
 }
 .Fi
 is equivalent to the attribute example above.
 .PP
 The following four rule attributes are supported by \fITripwire\fP:
-./"
+.\"
 .IP \f(CWrulename\fP 15
 The \f(CWrulename\fP attribute is used to associate a rule or set
 of rules with a specific name.  In a report file, this name will be
@@ -288,13 +288,13 @@
 .br
 Example:
 .Nf
-/etc -> +ug (rulename=watchme);
+/etc \-> +ug (rulename=watchme);
 .Fi
-./"
+.\"
 .IP \f(CWemailto\fP 15
 The \f(CWemailto\fP attribute associates one or more email addresses
 with a rule or group of rules.  When an integrity check is run with the
-.B \(hy\(hyemail\(hyreport
+.B \-\-email\-report
 option and a rule is violated, a report of that violation will be sent
 to the specified email address(es), using the report format specified
 by the
@@ -304,17 +304,17 @@
 .br
 Example:
 .Nf
-/etc -> +ug (emailto=admin@domain.com);
+/etc \-> +ug (emailto=admin@domain.com);
 .Fi
 .IP
 To specify multiple email addresses, include them as a quoted,
 semicolon-delimited list.
 .Nf
 .if n .in -\n(Nip
-/etc -> +ug (emailto="admin@foo.com;admin2@foo.com");
+/etc \-> +ug (emailto="admin@foo.com;admin2@foo.com");
 .if n .in +\n(Nip
 .Fi
-./"
+.\"
 .IP \f(CWseverity\fP 15
 The \f(CWseverity\fP attribute associates a numeric severity level with
 a rule.  When \fITripwire\fP is run in Integrity Checking mode, it is
@@ -324,14 +324,14 @@
 .br
 Example:
 .Nf
-/etc -> +ug (severity=50);
+/etc \-> +ug (severity=50);
 .Fi
-./"
+.\"
 .IP \f(CWrecurse\fP 15
 The \f(CWrecurse\fP attribute specifies how a rule will scan
 directories. Valid values for \f(CWrecurse\fP are \fItrue\fR,
-\fIfalse\fR, or a number from -1 to 1,000,000. If \fR\f(CWrecurse\fP is set
-to \fItrue\fR (or\ \(hy1), tripwire will recursively scan the entire
+\fIfalse\fR, or a number from \-1 to 1,000,000. If \fR\f(CWrecurse\fP is set
+to \fItrue\fR (or \-1), tripwire will recursively scan the entire
 contents of the directory (both files and subdirectories). When
 \fR\f(CWrecurse\fP is set to \fIfalse\fR (or\ 0), and the rule refers to a
 directory, \fITripwire\fP will scan the inode of the directory but none
@@ -350,9 +350,9 @@
 .br
 Example:
 .Nf
-/etc -> +ug (recurse=2);
+/etc \-> +ug (recurse=2);
 .Fi
-./"
+.\"
 .SS Directives
 \fITripwire\fP supports a small number of directives that allow
 conditional interpretation of the policy file and certain diagnostic
@@ -403,13 +403,13 @@
 .PP
 .Nf
 @@ifhost spock || kirk
-   /bin   ->   $(ReadOnly);
+   /bin   \->   $(ReadOnly);
 @@endif
 
 @@ifhost chekov || uhura
-   /usr/bin   ->   +pinug;
+   /usr/bin   \->   +pinug;
 @@else
-   /usr/bin   ->   +pinugsmC;
+   /usr/bin   \->   +pinugsmC;
 @@endif
 .Fi
 .PP
@@ -458,9 +458,9 @@
 param1 = +SMCH;         	# Set variable param1.
 dir1   = /etc/inet;     	# Set variable dir1.
 DIR1   = /etc/init.d;   	# Variables are case sensitive.
-$(dir1)   -> +tbamc;    	# Left hand substitution.
-/etc/inet -> $(param1); 	# Right hand substitution.
-$(DIR1)   -> $(param1); 	# Double substitution.
+$(dir1)   \-> +tbamc;    	# Left hand substitution.
+/etc/inet \-> $(param1); 	# Right hand substitution.
+$(DIR1)   \-> $(param1); 	# Double substitution.
 .Fi
 .PP
 A number of variables are predefined by \fITripwire\fP and may not be
@@ -474,7 +474,7 @@
 Value:
 .ft CW
 .ps \n(.s-1
-\+pinugtsdbmCM\(hyrlacSH
+\+pinugtsdbmCM\-rlacSH
 .ps \n(.s+1
 .ft
 .IP Dynamic 15
@@ -484,7 +484,7 @@
 Value:
 .ft CW
 .ps \n(.s-1
-+pinugtd\(hysrlbamcCMSH
++pinugtd\-srlbamcCMSH
 .ps \n(.s+1
 .ft
 .IP Growing 15
@@ -493,7 +493,7 @@
 Value:
 .ft CW
 .ps \n(.s-1
-\+pinugtdl\(hysrbamcCMSH 
+\+pinugtdl\-srbamcCMSH
 .ps \n(.s+1
 .ft
 .IP Device 15 
@@ -503,7 +503,7 @@
 Value:
 .ft CW
 .ps \n(.s-1
-\+pugsdr\(hyintlbamcCMSH
+\+pugsdr\-intlbamcCMSH
 .ps \n(.s+1
 .ft R
 .IP IgnoreAll 15
@@ -513,16 +513,16 @@
 Value:
 .ft CW
 .ps \n(.s-1
-\(hypinugtsdrlbamcCMSH
+\-pinugtsdrlbamcCMSH
 .ps \n(.s+1
 .ft
 .IP IgnoreNone 15
-IgnoreNone turns on all properties and provides a convenient starting point for defining your own property masks.  (For\ example,\ \f(CWmymask\ =\ $(IgnoreNone)\ -ar;\fP)
+IgnoreNone turns on all properties and provides a convenient starting point for defining your own property masks.  (For\ example,\ \f(CWmymask\ =\ $(IgnoreNone)\ \-ar;\fP)
 .br
 Value:
 .ft CW
 .ps \n(.s-1
-\+pinugtsdrbamcCMSH\(hyl
+\+pinugtsdrbamcCMSH\-l
 .ps \n(.s+1             
 .ft
 .SH VERSION INFORMATION
--- a/man/man5/twfiles.5
+++ b/man/man5/twfiles.5
@@ -58,7 +58,7 @@
 \fBtwprint\fR(8) man pages for more information on creating and
 maintaining database files.
 .\"
-.Ms "Report Files" "\fPdefault:\fP \fI/var/lib/tripwire/report/$(HOSTNAME)\(hy$(DATE).twr\fP"
+.Ms "Report Files" "\fPdefault:\fP \fI/var/lib/tripwire/report/$(HOSTNAME)\-$(DATE).twr\fP"
 Once the above three files have been created, \fITripwire\fR can run an
 integrity check and search for any differences between the current
 system and the data stored in the "baseline" \fITripwire\fR database.
@@ -69,7 +69,7 @@
 \fBtripwire\fR(8) and \fBtwprint\fR(8) man pages for information on
 creating and printing report files.
 .\"
-.Ms "Key Files" "\fPdefaults:\fP \fI/etc/tripwire/site.key\fP \fPand\fP \fI/etc/tripwire/$(HOSTNAME)\(hylocal.key\fP"
+.Ms "Key Files" "\fPdefaults:\fP \fI/etc/tripwire/site.key\fP \fPand\fP \fI/etc/tripwire/$(HOSTNAME)\-local.key\fP"
 It is critical that \fITripwire\fR files be protected from unauthorized
 .ie n access\(hy\(hyan
 .el access\(eman
--- a/man/man8/siggen.8
+++ b/man/man8/siggen.8
@@ -8,17 +8,17 @@
 .SH SYNOPSIS
 .B siggen
 [
-.BR -t | --terse
+.BR \-t | \-\-terse
 ] [
-.BR -h | --hexadecimal
+.BR \-h | \-\-hexadecimal
 ] [
-.BR -a | --all
+.BR \-a | \-\-all
 ] [
-.BR -C | --CRC32
+.BR \-C | \-\-CRC32
 ] [
-.BR -S | --SHA
+.BR \-S | \-\-SHA
 ] [
-.BR -h | --HAVAL
+.BR \-h | \-\-HAVAL
 ]
 .IR file1 ,,,
 .SH DESCRIPTION
@@ -27,29 +27,29 @@
 for the specified files.
 .SH OPTIONS
 .TP
-.BI \(hyt ", " --terse
+.BI \-t ", " \-\-terse
 Terse mode.
 Prints requested hashes for a given file on one line, delimited
 by spaces, with no extraneous information.
 .TP
-.BI \(hyh ", " --hexadecimal
+.BI \-h ", " \-\-hexadecimal
 Display results in hexadecimal rather than base64 notation.
 .TP
-.BI \(hya ", " --all
+.BI \-a ", " \-\-all
 Display all hash function values (default).
 .TP
-.BI \(hyC ", " --CRC32
+.BI \-C ", " \-\-CRC32
 Display CRC-32, POSIX 1003.2 compliant 32-bit Cyclic Redundancy 
 Check.
 .TP
-.BI \(hyM ", " --MD5
+.BI \-M ", " \-\-MD5
 Display MD5, the RSA Data Security, Inc. Message Digest Algorithm.
 .TP
-.BI \(hyS ", " --SHA
+.BI \-S ", " \-\-SHA
 Display SHA, \fITripwire\fP's implementation of the
 NIST Secure Hash Standard, SHS (NIST FIPS 180).
 .TP
-.BI \(hyH ", " --HAVAL
+.BI \-H ", " \-\-HAVAL
 Display Haval value, a 128-bit hash code.
 .TP
 .IR file1 " [ " "file2... " ]
--- a/man/man8/tripwire.8
+++ b/man/man8/tripwire.8
@@ -41,29 +41,29 @@
 tripwire \- a file integrity checker for \s-1UNIX-like\s0 systems
 .SH SYNOPSIS
 .B tripwire
-.RB "{ " "-m i" " | " "--init" " } "  
+.RB "{ " "\-m i" " | " "\-\-init" " } "
 .RI "[ " options... " ]"
 .br 
 .B tripwire
-.RB "{ " "-m c" " | " "--check" " } "
+.RB "{ " "\-m c" " | " "\-\-check" " } "
 .RI "[ " options... " ] "
 .if n .br
 .if n .ti +.5i
 .RI "[ " "object1" " [ " "object2..." " ]]"
 .br
 .B tripwire
-.RB "{ " "-m u" " | " "--update" " } "
+.RB "{ " "\-m u" " | " "\-\-update" " } "
 .RI "[ " options... " ]"
 .br
 .B tripwire
-.RB "{ " "-m p" " | " "--update-policy" " } "
+.RB "{ " "\-m p" " | " "\-\-update\-policy" " } "
 .RI "[ " options... " ]"
 .if n .br
 .if n .ti +.5i
 .I policyfile.txt
 .br
 .B tripwire
-.RB "{ " "-m t" " | " "--test" " } "
+.RB "{ " "\-m t" " | " "\-\-test" " } "
 .RI "[ " options... " ]"
 .\"
 .SH DESCRIPTION
@@ -112,8 +112,8 @@
 the problem by replacing the current file with the correct file (e.g.,
 an intruder replaced \fI/bin/login\fP), or update the database to
 reflect the new file (e.g., a fellow system administrator installed a
-new version of \fI/usr/local/bin/emacs\fP).  The (\fB\(hyI\fP or
-\fB\(hy\(hyinteractive\fP) option launches an editor that allows the
+new version of \fI/usr/local/bin/emacs\fP).  The (\fB\-I\fP or
+\fB\-\-interactive\fP) option launches an editor that allows the
 user to update the database quickly.  The Database Update mode of
 \fBtripwire\fP can also be used.
 .\"
@@ -137,7 +137,7 @@
 \fBtripwire\fP will update the database.
 Options to control this operation include the
 .hy 0
-(\fB\(hyZ\fP\ or\ \fB\(hy\(hysecure\(hymode\fP) and (\fB\(hya\fP\ or\ \fB\(hy\(hyaccept\(hyall\fP) flags.
+(\fB\-Z\fP\ or\ \fB\-\-secure\-mode\fP) and (\fB\-a\fP\ or\ \fB\-\-accept\-all\fP) flags.
 .hy 1
 .\"
 .\" *****************************************
@@ -150,7 +150,7 @@
 to the new policy rules.  Any changes in the database since the last
 integrity check will be detected and reported.  How these violations
 are interpreted depends on the security mode specified with the
-(\fB\(hyZ\fP or \fB\(hy\(hysecure\(hymode\fP) option.
+(\fB\-Z\fP or \fB\-\-secure\-mode\fP) option.
 In \fBhigh\fP security mode (the default), \fITripwire\fR will print a list of
 violations and exit without making changes to the database.  In
 \fBlow\fP security mode, the violations are still
@@ -196,54 +196,54 @@
 .TS
 ;
 lbw(1.2i) lb.
--m i	--init
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--d \fIdatabase\fP	--dbfile \fIdatabase\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--e	--no-encryption
+\-m i	\-\-init
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-d \fIdatabase\fP	\-\-dbfile \fIdatabase\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-e	\-\-no\-encryption
 .TE
 .RE
 .TP
-.BR "\(hym i" ", " --init
+.BR "\-m i" ", " \-\-init
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile"
+.BI \-p " polfile\fR, " \-\-polfile " polfile"
 Use the specified policy file.
 .TP
-.BI \(hyd " database\fR, " --dbfile " database"
+.BI \-d " database\fR, " \-\-dbfile " database"
 Write to the specified database file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Use the specified site key file to read the configuration and policy
 files.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Use the specified local key file to write the new database file.
-Mutually exclusive with (\fB\(hye\fR).
+Mutually exclusive with (\fB\-e\fR).
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specifies passphrase to be used with local key to sign the new database.
-Mutually exclusive with (\fB\(hye\fR).
+Mutually exclusive with (\fB\-e\fR).
 .TP
-.BR \(hye ", " --no-encryption
+.BR \-e ", " \-\-no\-encryption
 Do not sign the database being stored.  
 The database file will still be compressed and will not be
 human-readable.
-Mutually exclusive with (\fB\(hyL\fR) and (\fB\(hyP\fR).
+Mutually exclusive with (\fB\-L\fR) and (\fB\-P\fR).
 .\"
 .\" *****************************************
 .Hr
@@ -253,84 +253,84 @@
 .TS
 ;
 lbw(1.2i) lb.
--m c	--check
--I	--interactive
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--d \fIdatabase\fP	--dbfile \fIdatabase\fP
--r \fIreport\fP	--twrfile \fIreport\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--n	--no-tty-output
--V \fIeditor\fP	--visual \fIeditor\fP
--E	--signed-report
--i \fIlist\fP	--ignore \fIlist\fP
--l \fR{ \fIlevel\fR | \fIname\fR }\fP	--severity \fR{ \fIlevel\fR | \fIname\fR }\fP
--R \fIrule\fP	--rule-name \fIrule\fP
--x \fIsection\fP	--section \fIsection\fP
--M	--email-report
--t \fR{ 0|1|2|3|4 }\fP	--email-report-level \fR{ 0|1|2|3|4 }\fP
--h	--hexadecimal
+\-m c	\-\-check
+\-I	\-\-interactive
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-d \fIdatabase\fP	\-\-dbfile \fIdatabase\fP
+\-r \fIreport\fP	\-\-twrfile \fIreport\fP
+\-S \fIsitekey\fP	\-\-site-keyfile \fIsitekey\fP
+\-L \fIlocalkey\fP	\-\-local-keyfile \fIlocalkey\fP
+\-P \fIpassphrase\fP	\-\-local-passphrase \fIpassphrase\fP
+\-n	\-\-no-tty-output
+\-V \fIeditor\fP	\-\-visual \fIeditor\fP
+\-E	\-\-signed-report
+\-i \fIlist\fP	\-\-ignore \fIlist\fP
+\-l \fR{ \fIlevel\fR | \fIname\fR }\fP	\-\-severity \fR{ \fIlevel\fR | \fIname\fR }\fP
+\-R \fIrule\fP	\-\-rule-name \fIrule\fP
+\-x \fIsection\fP	\-\-section \fIsection\fP
+\-M	\-\-email-report
+\-t \fR{ 0|1|2|3|4 }\fP	\-\-email-report-level \fR{ 0|1|2|3|4 }\fP
+\-h	\-\-hexadecimal
 .TE
 .RI "[ " object1 " [ " object2... " ]]"
 .RE
 .TP
-.BR "\(hym c" ", " --check
+.BR "\-m c" ", " \-\-check
 Mode selector.
 .TP
-.BR \(hyI ", " --interactive
+.BR \-I ", " \-\-interactive
 At the end of integrity checking, the resulting report is opened
 in an editor where database updates can be easily specified using
 the ballot boxes included in the report.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile
+.BI \-p " polfile\fR, " \-\-polfile " polfile
 Use the specified policy file.
 .TP
-.BI \(hyd " database\fR, " --dbfile " database"
+.BI \-d " database\fR, " \-\-dbfile " database"
 Use the specified database file.
 .TP
-.BI \(hyr " report\fR, " --twrfile " report"
+.BI \-r " report\fR, " \-\-twrfile " report"
 Write the specified report file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site-keyfile " sitekey"
 Use the specified site key file to read the configuration
 and policy files.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local-keyfile " localkey"
 Use the specified local key file to read the database
-file and, if (\fB\(hyE\fR) is specified, to write the report file.
+file and, if (\fB\-E\fR) is specified, to write the report file.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local-passphrase " passphrase"
 Specifies passphrase to be used with local key to
-sign the database when (\fB\(hyI\fR) is used, and to
-sign the report when (\fB\(hyE\fR) is used.
-Valid only with (\fB\(hyI\fR) or (\fB\(hyE\fR).
+sign the database when (\fB\-I\fR) is used, and to
+sign the report when (\fB\-E\fR) is used.
+Valid only with (\fB\-I\fR) or (\fB\-E\fR).
 .TP
-.BR \(hyn ", " --no-tty-output
+.BR \-n ", " \-\-no-tty-output
 Suppress the report from being printed at the console.
 .TP
-.BI \(hyV " editor\fR, " --visual " editor
+.BI \-V " editor\fR, " \-\-visual " editor
 Use the specified editor to edit the update ballot boxes.
-Meaningful only with (\fB\(hyI\fP).
+Meaningful only with (\fB\-I\fP).
 .TP
-.BR \(hyE ", " --signed-report
+.BR \-E ", " \-\-signed-report
 Specifies that the \fITripwire\fR report will be signed.  If
 no passphrase is specified on the command line, \fBtripwire\fR
 will prompt for the local passphrase.
 .TP
-.BI \(hyi " list\fR, " --ignore " list
+.BI \-i " list\fR, " \-\-ignore " list
 Do not compute or compare the properties specified in \fIlist\fR.  Any
 of the letter codes (abcdgimnprstulCHMS) specified in propertymasks can
 be excluded.
@@ -338,7 +338,7 @@
 The format to be used for \fIlist\fP is a double-quoted, comma-delimited list
 of properties (e.g.\ \fI\-\-ignore\ "p,c,m"\fP).
 .TP
-\fB\(hyl \fR{ \fIlevel \fR| \fIname \fR}, \fB--severity \fR{ \fIlevel \fR| \fIname \fR}
+\fB\-l \fR{ \fIlevel \fR| \fIname \fR}, \fB\-\-severity \fR{ \fIlevel \fR| \fIname \fR}
 Check only policy rules with severity greater than or equal to
 the given level.  The level may be specified as a number or as a name.
 Severity names are defined as follows:
@@ -348,35 +348,35 @@
 	Medium	66
 	High	100
 .fi
-Mutually exclusive with (\fB\(hyR\fP).
+Mutually exclusive with (\fB\-R\fP).
 .DT
 .TP
-.BI \(hyR " rule\fR, " --rule-name " rule
+.BI \-R " rule\fR, " \-\-rule-name " rule
 Check only the specified policy rule.  Mutually exclusive with
-(\fB\(hyl\fP).
+(\fB\-R\fP).
 .TP
-.BI \(hyx " section\fR, " --section " section
+.BI \-x " section\fR, " \-\-section " section
 Only check the rules in the specified section of the policy file.  For
 \fITripwire 2.4\fR, \fR\f(CWFS\fP is the only meaningful
 argument for this flag.
 .TP
-.BR \(hyM ", " --email-report
+.BR \-M ", " \-\-email-report
 Specifies that reports be emailed to the recipient(s) designated in the
 policy file.
 .TP
-.BI \(hyt " level\fR, " --email-report-level " level
+.BI \-t " level\fR, " \-\-email-report-level " level
 Specifies the detail level of email reports, overriding the
 EMAILREPORTLEVEL variable in the configuration file. \fIlevel\fR must
 be a number from 0\ to\ 4.
-Valid only with (\fB\(hyM\fP).
+Valid only with (\fB\-M\fP).
 .TP
-.BR \(hyh ", " --hexadecimal
+.BR \-h ", " \-\-hexadecimal
 Display hash values as hexadecimal in email reports
 .TP 
 .RI "[ " object1 " [ " object2... " ]]"
 List of files and directories that should be integrity checked.
 Default is all files.  If files are specified for checking, the
-\fB--severity\fR and \fB--rule-name\fR options will be ignored.
+\fB\-\-severity\fR and \fB\-\-rule-name\fR options will be ignored.
 .\"
 .\" *****************************************
 .Hr
@@ -386,64 +386,64 @@
 .TS
 ;
 lbw(1.2i) lb.
--m u	--update
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--d \fIdatabase\fP	--dbfile \fIdatabase\fP
--r \fIreport\fP	--twrfile \fIreport\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--V \fIeditor\fP	--visual \fIeditor\fP
--a	--accept-all
--Z \fR{ low | high }\fP	--secure-mode \fR{ low | high }\fP
+\-m u	\-\-update
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-d \fIdatabase\fP	\-\-dbfile \fIdatabase\fP
+\-r \fIreport\fP	\-\-twrfile \fIreport\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-V \fIeditor\fP	\-\-visual \fIeditor\fP
+\-a	\-\-accept\-all
+\-Z \fR{ low | high }\fP	\-\-secure\-mode \fR{ low | high }\fP
 .TE
 .RE
 .TP
-.BR "\(hym u" ", " --update
+.BR "\-m u" ", " \-\-update
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile
+.BI \-p " polfile\fR, " \-\-polfile " polfile
 Use the specified policy file.
 .TP
-.BI \(hyd " database\fR, " --dbfile " database"
+.BI \-d " database\fR, " \-\-dbfile " database"
 Update the specified database file.
 .TP
-.BI \(hyr " report\fR, " --twrfile " report"
+.BI \-r " report\fR, " \-\-twrfile " report"
 Read the specified report file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Use the specified site key file to read the configuration
 and policy files.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Use the specified local key file to read the database
 file and report file, and to re-write the database file.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specifies passphrase to be used with local key to
 sign the database.
 .TP
-.BI \(hyV " editor\fR, " --visual " editor"
+.BI \-V " editor\fR, " \-\-visual " editor"
 Use the specified editor to edit the update ballot boxes.  Mutually
-exclusive with (\fB\(hya\fP).
+exclusive with (\fB\-a\fP).
 .TP
-.BR \(hya ", " --accept-all
+.BR \-a ", " \-\-accept\-all
 Specifies that all the entries in the report file are updated
-without prompting.  Mutually exclusive with (\fB\(hyV\fP).
+without prompting.  Mutually exclusive with (\fB\-V\fP).
 .TP
-\fB\(hyZ \fR{ low | high \fR}, \fB--secure-mode \fR{ low | high \fR}
+\fB\-Z \fR{ low | high \fR}, \fB\-\-secure\-mode \fR{ low | high \fR}
 Specifies the security level, which affects how certain conditions are
 handled when inconsistent information is found between the report file
 and the current database:
@@ -464,56 +464,56 @@
 .TS
 ;
 lbw(1.2i) lb.
--m p	--update-policy
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--d \fIdatabase\fP	--dbfile \fIdatabase\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
--Z \fR{ low | high }\fP	--secure-mode \fR{ low | high }\fP
+\-m p	\-\-update\-policy
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-d \fIdatabase\fP	\-\-dbfile \fIdatabase\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
+\-Z \fR{ low | high }\fP	\-\-secure\-mode \fR{ low | high }\fP
 .TE
 .I policyfile.txt
 .RE
 .TP
-.BR "\(hym p" ", " --update-policy
+.BR "\-m p" ", " \-\-update\-policy
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile
+.BI \-p " polfile\fR, " \-\-polfile " polfile
 Write the specified policy file.
 .TP
-.BI \(hyd " database\fR, " --dbfile " database"
+.BI \-d " database\fR, " \-\-dbfile " database"
 Use the specified database file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Use the specified site key file to read the configuration
 file, and read and write the policy file.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Use the specified local key file to read and write the database
 file.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specifies passphrase to be used with local key to
 sign the database.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specifies passphrase to be used with site key to sign
 the new policy file.
 .TP
-\fB\(hyZ \fR{ low | high \fR}, \fB--secure-mode \fR{ low | high \fR}
+\fB\-Z \fR{ low | high \fR}, \fB\-\-secure\-mode \fR{ low | high \fR}
 Specifies the security level, which affects how certain conditions are
 handled when the existing filesystem does not match the database
 information.  Since the database produced at the end of a policy update
@@ -542,15 +542,15 @@
 .TS
 ;
 lbw(1.2i) lb.
--m t	--test
--e \fIuser@domain.com\fP	--email \fIuser@domain.com\fP
+\-m t	\-\-test
+\-e \fIuser@domain.com\fP	\-\-email \fIuser@domain.com\fP
 .TE
 .RE
 .TP
-.BR "\(hym t" ", " --test
+.BR "\-m t" ", " \-\-test
 Mode selector.
 .TP
-.BI \(hye " user@domain.com\fR, " --email " user@domain.com"
+.BI \-e " user@domain.com\fR, " \-\-email " user@domain.com"
 Use the specified email address.  This parameter must
 be supplied when test mode is used. Only one address
 may be specified.
--- a/man/man8/twadmin.8
+++ b/man/man8/twadmin.8
@@ -22,50 +22,50 @@
 twadmin \- Tripwire administrative and utility tool
 .SH SYNOPSIS
 .B twadmin
-.RB "{ " "-m F" " | " "--create-cfgfile" " } "
+.RB "{ " "\-m F" " | " "\-\-create\-cfgfile" " } "
 .I " options... "
 .if n .br
 .if n .ti +.5i
 .I "configfile.txt"
 .br
 .B twadmin
-.RB "{ " "-m f" " | " "--print-cfgfile" " } "
+.RB "{ " "\-m f" " | " "\-\-print\-cfgfile" " } "
 .RI "[ " options... " ]"
 .br
 .B twadmin
-.RB "{ " "-m P" " | " "--create-polfile" " } "
+.RB "{ " "\-m P" " | " "\-\-create\-polfile" " } "
 .RI "[ " options... " ] "
 .if n .br
 .if n .ti +.5i
 .I "policyfile.txt"
 .br
 .B twadmin
-.RB "{ " "-m p" " | " "--print-polfile" " } "
+.RB "{ " "\-m p" " | " "\-\-print\-polfile" " } "
 .RI "[ " options... " ]"
 .br
 .B twadmin
-.RB "{ " "-m R" " | " "--remove-encryption" " } "
+.RB "{ " "\-m R" " | " "\-\-remove\-encryption" " } "
 .RI "[ " options... " ] "
 .if n .br
 .if n .ti +.5i
 .IR file1 " [ " file2... " ]"
 .br
 .B twadmin
-.RB "{ " "-m E" " | " "--encrypt" " } "
+.RB "{ " "\-m E" " | " "\-\-encrypt" " } "
 .RI "[ " options... " ] "
 .if n .br
 .if n .ti +.5i
 .IR file1 " [ " file2... " ]"
 .br
 .B twadmin
-.RB "{ " "-m e" " | " "--examine" " } "
+.RB "{ " "\-m e" " | " "\-\-examine" " } "
 .RI "[ " options... " ] "
 .if n .br
 .if n .ti +.5i
 .IR file1 " [ " file2... " ]"
 .br
 .B twadmin
-.RB "{ " "-m G" " | " "--generate-keys" " } "
+.RB "{ " "\-m G" " | " "\-\-generate\-keys" " } "
 .I options...
 .br
 .B twadmin
@@ -81,7 +81,7 @@
 \fITripwire\fR files, and provides a means to generate and change
 local and site keys.
 .\" *****************************************
-.SS Creating a configuration file (--create-cfgfile)
+.SS Creating a configuration file (\-\-create\-cfgfile)
 This command mode designates an existing text file as the new
 configuration file for \fITripwire\fR.
 The plain text configuration
@@ -89,23 +89,23 @@
 Using the site key, the new configuration file
 is encoded and saved.
 .\" *****************************************
-.SS Printing a configuration file (--print-cfgfile)
+.SS Printing a configuration file (\-\-print\-cfgfile)
 This command mode prints the specified encoded and signed
 configuration file in clear-text form to standard output.  
 .\" *****************************************
-.SS Replacing a policy file (--create-polfile)
+.SS Replacing a policy file (\-\-create\-polfile)
 This command mode designates an existing text file as the new
 policy file for \fITripwire\fR.
 The plain text policy file must be specified on the 
 command line.
 Using the site key, the new policy file is encoded and saved.  
 .\" *****************************************
-.SS Printing a policy file (--print-polfile)
+.SS Printing a policy file (\-\-print\-polfile)
 This command mode prints the
 specified encoded and signed policy file
 in clear-text form to standard output.  
 .\" *****************************************
-.SS Removing encryption from a file (--remove-encryption)
+.SS Removing encryption from a file (\-\-remove\-encryption)
 This command mode allows the user to remove signing from signed
 configuration, policy, database, or report files.  Multiple
 files may be specified on the command line. The
@@ -114,7 +114,7 @@
 cryptographic signing removed, these files will be in a binary encoded
 (non-human-readable) form.
 .\" *****************************************
-.SS Encrypting a file (--encrypt)
+.SS Encrypting a file (\-\-encrypt)
 This command mode allows the user to sign
 configuration, policy, database files, or reports.
 Multiple files may be specified on the command line.
@@ -124,14 +124,14 @@
 files can be included on the command line.
 .\" *****************************************
 .hy 0
-.SS "Examining the signing status of a file (\(hy\(hyexamine)"
+.SS "Examining the signing status of a file (\-\-examine)"
 .hy 1
 This command allows the user to examine the listed files
 and print a report of their signing status.  This report
 displays the filename, file type, whether or not a file is
 signed, and what key (if any) is used to sign it.  
 .\" *****************************************
-.SS Generating keys (--generate-keys)
+.SS Generating keys (\-\-generate\-keys)
 This command mode generates site and/or local key files with
 names specified by the user.
 .\" *****************************************
@@ -148,45 +148,45 @@
 .TS
 ;
 lbw(1.2i) lb.
--m F	--create-cfgfile
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
--e	--no-encryption
+\-m F	\-\-create\-cfgfile
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
+\-e	\-\-no\-encryption
 .TE
 .I configfile.txt
 .RE
 .TP
-.BR "\(hym F" ", " "--create-cfgfile"
+.BR "\-m F" ", " "\-\-create\-cfgfile"
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Specify the destination of the encoded (and optionally signed)
 configuration file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Use the specified site key file to encode and sign the new
 configuration file.
-Exactly one of (\fB\(hyS\fR) or (\fB\(hye\fP) must be specified.
+Exactly one of (\fB\-S\fR) or (\fB\-e\fP) must be specified.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specifies passphrase to be used with site key for
 configuration file encoding and signing.
-Valid only in conjunction with (\fB\(hyS\fR).
+Valid only in conjunction with (\fB\-S\fR).
 .TP
-.BR \(hye ", " --no-encryption
+.BR \-e ", " \-\-no\-encryption
 Do not sign the configuration file being stored.
 The configuration
 file will still be compressed, and will not be human-readable.
-Mutually exclusive with (\fB\(hyQ\fR) and (\fB\(hyS\fR).
+Mutually exclusive with (\fB\-Q\fR) and (\fB\-S\fR).
 .TP
 .I configfile.txt
 Specifies the text configuration file that will become
@@ -199,23 +199,23 @@
 .TS
 ;
 lbw(1.2i) lb.
--m f	--print-cfgfile
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
+\-m f	\-\-print\-cfgfile
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
 .TE
 .RE
 .TP
-.BR "\(hym f" ", " "--print-cfgfile"
+.BR "\-m f" ", " "\-\-print\-cfgfile"
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Print the specified configuration file.
 .\" *****************************************
 .Hr
@@ -225,45 +225,45 @@
 .TS
 ;
 lbw(1.2i) lb.
--m P	--create-polfile
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
--e	--no-encryption
+\-m P	\-\-create\-polfile
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
+\-e	\-\-no\-encryption
 .TE
 .I policyfile.txt
 .RE
 .TP
-.BR "\(hym P" ", " --create-polfile
+.BR "\-m P" ", " \-\-create\-polfile
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode. Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode. Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile"
+.BI \-p " polfile\fR, " \-\-polfile " polfile"
 Specify the destination of the encoded (and optionally signed) policy
 file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
-Use the specified site key file.  Mutually exclusive with (\fB\(hye\fR).  
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
+Use the specified site key file.  Mutually exclusive with (\fB\-e\fR).
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specifies passphrase to be used with site key for policy signing.
-Mutually exclusive with (\fB\(hye\fR).
+Mutually exclusive with (\fB\-e\fR).
 .TP
-.BR \(hye ", " --no-encryption
+.BR \-e ", " \-\-no\-encryption
 Do not sign the policy file being stored.  The policy
 file will still be compressed, and will not be human-readable.
-Mutually exclusive with (\fB\(hyQ\fR) and (\fB\(hyS\fR).
+Mutually exclusive with (\fB\-Q\fR) and (\fB\-S\fR).
 .TP
 .I policyfile.txt
 Specifies the text policy file that will become the new 
@@ -276,31 +276,31 @@
 .TS
 ;
 lbw(1.2i) lb.
--m p	--print-polfile
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--p \fIpolfile\fP	--polfile \fIpolfile\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
+\-m p	\-\-print\-polfile
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-p \fIpolfile\fP	\-\-polfile \fIpolfile\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
 .TE
 .RE
 .TP
-.BR "\(hym p" ", " --print-polfile
+.BR "\-m p" ", " \-\-print\-polfile
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP 
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyp " polfile\fR, " --polfile " polfile"
+.BI \-p " polfile\fR, " \-\-polfile " polfile"
 Print the specified policy file.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Use the specified site key file.
 .\" *****************************************
 .Hr
@@ -310,42 +310,42 @@
 .TS
 ;
 lbw(1.2i) lb.
--m R	--remove-encryption
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
+\-m R	\-\-remove\-encryption
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
 .TE
 .IR "file1" " [ " "file2..." " ]"
 .RE
 .TP
-.BR "\(hym R" ", " --remove-encryption
+.BR "\-m R" ", " \-\-remove\-encryption
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Specify the local keyfile to use to verify database files and reports.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Specify the site keyfile to use to verify configuration
 and policy files.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specify the passphrase to use when verifying with the
 old local keyfile.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specify the passphrase to use when verifying with the
 old site keyfile.
 .TP
@@ -359,43 +359,43 @@
 .TS
 ;
 lbw(1.2i) lb.
--m E	--encrypt
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
+\-m E	\-\-encrypt
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
 .TE
 .IR "file1" " [ " "file2..." " ]"
 .RE
 .TP
-.BR "\(hym E" ", " --encrypt
+.BR "\-m E" ", " \-\-encrypt
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Specify the local keyfile to use to sign database
 files and reports.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Specify the site keyfile to use to sign configuration
 and policy files.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specify the passphrase to use when signing with the 
 local keyfile.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specify the passphrase to use when signing with the 
 site keyfile.
 .TP
@@ -409,32 +409,32 @@
 .TS
 ;
 lbw(1.2i) lb.
--m e	--examine
--v	--verbose
--s	--silent\fR,\fP --quiet
--c \fIcfgfile\fP	--cfgfile \fIcfgfile\fP
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
+\-m e	\-\-examine
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-c \fIcfgfile\fP	\-\-cfgfile \fIcfgfile\fP
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
 .TE
 .IR file1 " [ " file2... " ]"
 .RE
 .TP
-.BR "\(hym e" ", " --examine
+.BR "\-m e" ", " \-\-examine
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyc " cfgfile\fR, " --cfgfile " cfgfile"
+.BI \-c " cfgfile\fR, " \-\-cfgfile " cfgfile"
 Use the specified configuration file.
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Specifies the key to use as a local key.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Specifies the key to use as a site key.
 .TP
 .IR file1 " [ " file2... " ]"
@@ -447,38 +447,38 @@
 .TS
 ;
 lbw(1.2i) lb.
--m G	--generate-keys
--v	--verbose
--s	--silent\fR,\fP --quiet
--L \fIlocalkey\fP	--local-keyfile \fIlocalkey\fP
--S \fIsitekey\fP	--site-keyfile \fIsitekey\fP
--P \fIpassphrase\fP	--local-passphrase \fIpassphrase\fP
--Q \fIpassphrase\fP	--site-passphrase \fIpassphrase\fP
+\-m G	\-\-generate\-keys
+\-v	\-\-verbose
+\-s	\-\-silent\fR,\fP \-\-quiet
+\-L \fIlocalkey\fP	\-\-local\-keyfile \fIlocalkey\fP
+\-S \fIsitekey\fP	\-\-site\-keyfile \fIsitekey\fP
+\-P \fIpassphrase\fP	\-\-local\-passphrase \fIpassphrase\fP
+\-Q \fIpassphrase\fP	\-\-site\-passphrase \fIpassphrase\fP
 .TE
 .RE
 .TP
-.BR "\(hym G" ", " --generate-keys
+.BR "\-m G" ", " \-\-generate\-keys
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " \-\-verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " \-\-silent ", " \-\-quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " \-\-local\-keyfile " localkey"
 Generate the local key into the specified file.  At least one of
-(\fB\(hyL\fR) or (\fB\(hyS\fR) must be specified.
+(\fB\-L\fR) or (\fB\-S\fR) must be specified.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " \-\-site\-keyfile " sitekey"
 Generate the site key into the specified file.  At least one of
-(\fB\(hyS\fR) or (\fB\(hyL\fR) must be specified.
+(\fB\-S\fR) or (\fB\-L\fR) must be specified.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " \-\-local\-passphrase " passphrase"
 Specify local passphrase to be used when generating
 the local key.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " \-\-site\-passphrase " passphrase"
 Specify site passphrase to be used when generating
 the site key.
 .TP
@@ -505,28 +505,28 @@
 .TE
 .RE
 .TP
-.BR "\(hym C" ", " --change-passphrases
+.BR "\-m C" ", " --change-passphrases
 Mode selector.
 .TP
-.BR \(hyv ", " --verbose
-Verbose output mode.  Mutually exclusive with (\fB\(hys\fR).
+.BR \-v ", " --verbose
+Verbose output mode.  Mutually exclusive with (\fB\-s\fR).
 .TP
-.BR \(hys ", " --silent ", " --quiet
-Silent output mode.  Mutually exclusive with (\fB\(hyv\fR).   
+.BR \-s ", " --silent ", " --quiet
+Silent output mode.  Mutually exclusive with (\fB\-v\fR).
 .TP
-.BI \(hyL " localkey\fR, " --local-keyfile " localkey"
+.BI \-L " localkey\fR, " --local-keyfile " localkey"
 Change passphrase used to encrypt the private key in the specified localkey
-file.  At least one of (\fB\(hyL\fR) or (\fB\(hyS\fR) must be specified.
+file.  At least one of (\fB\-L\fR) or (\fB\-S\fR) must be specified.
 .TP
-.BI \(hyS " sitekey\fR, " --site-keyfile " sitekey"
+.BI \-S " sitekey\fR, " --site-keyfile " sitekey"
 Change passphrase used to encrypt the private key in the specified sitekey
-file.  At least one of (\fB\(hyL\fR) or (\fB\(hyS\fR) must be specified.
+file.  At least one of (\fB\-L\fR) or (\fB\-S\fR) must be specified.
 .TP
-.BI \(hyP " passphrase\fR, " --local-passphrase " passphrase"
+.BI \-P " passphrase\fR, " --local-passphrase " passphrase"
 Specify passphrase used to encrypt the private key in the specified localkey
 file.
 .TP
-.BI \(hyQ " passphrase\fR, " --site-passphrase " passphrase"
+.BI \-Q " passphrase\fR, " --site-passphrase " passphrase"
 Specify passphrase used to encrypt the private key in the specified sitekey
 file.
 .TP
--- a/man/man8/twintro.8
+++ b/man/man8/twintro.8
@@ -79,13 +79,13 @@
 .RE
 .PP
 Using the  
-.B \(hy\(hyhelp
+.B \-\-help
 flag with any \fITripwire\fP command
-(e.g.\ \fBtripwire\ \(hy\(hyhelp\fP) will print a short summary of the
+(e.g.\ \fBtripwire\ \-\-help\fP) will print a short summary of the
 command modes for that command.  If a mode selector is also specified
-(e.g.\ \fBtripwire\ \(hy\(hycheck\ \(hy\(hyhelp\fP), a mode\(hyspecific
+(e.g.\ \fBtripwire\ \-\-check\ \-\-help\fP), a mode\-specific
 usage message will be displayed.  Using the \fBall\fP argument with the
-\fB--help\fP flag (e.g.\ \fBtripwire\ \(hy\(hyhelp\ all\fP) will print
+\fB\-\-help\fP flag (e.g.\ \fBtripwire\ \-\-help\ all\fP) will print
 detailed usage messages for all modes of the specified command.
 .SH VERSION INFORMATION
 This man page describes
--- a/man/man8/twprint.8
+++ b/man/man8/twprint.8
@@ -8,14 +8,14 @@
 twprint \- Tripwire database and report printer
 .SH SYNOPSIS
 .B twprint
-.RB "{ " "-m r" " | " "--print-report" " } "
+.RB "{ " "\-m r" " | " "\-\-print\-report" " } "
 .RI "[ " options... " ]"
 .if n .br
 .if n .ti +.5i
 .RI " [ " "object1" " [ " "object2..." " ]]"
 .br
 .B twprint
-.RB "{ " "-m d" " | " "--print-dbfile" " } "
+.RB "{ " "\-m d" " | " "\-\-print\-dbfile" " } "
 .RI "[ " options... " ]"
 .if n .br
 .if n .ti +.5i
@@ -33,8 +33,8 @@
 variable in the configuration file will be used.  By default,
 this value includes the date and time to the nearest second.  Because
 this value is constantly changing, \fBtwprint\fR may not be able to
-find the correct report file. For this reason, the (\fB\(hyr\fR or
-\fB--twrfile\fR) flag should be used with the desired report name to
+find the correct report file. For this reason, the (\fB\-r\fR or
+\fB\-\-twrfile\fR) flag should be used with the desired report name to
 print a specific report.
 .SS Database Printing mode
 .PP