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
|
'\" t
.\" Title: STRFILE
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 06/03/2023
.\" Manual: 4th Berkeley Distribution
.\" Source: June 9, 1993 [Apr. 1997]
.\" Language: English
.\"
.TH "STRFILE" "1" "06/03/2023" "June 9, 1993 [Apr\&. 1997]" "4th Berkeley Distribution"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
strfile \- create a random access file for storing strings
.br
unstr \- dump strings in pointer order
.SH "SYNOPSIS"
.HP \w'\fBstrfile\fR\ 'u
\fBstrfile\fR [\-iorsx]
[\-c\ \fIchar\fR]
\fIsourcefile\fR
[\fIoutputfile\fR]
.HP \w'\fBunstr\fR\ 'u
\fBunstr\fR [\-c\ \fIchar\fR]
\fIdatafile\&.[ext]\fR
[\fIoutputfile\fR]
.SH "DESCRIPTION"
.PP
\fBstrfile\fR
reads a file containing groups of lines separated by a line containing a single percent `%\*(Aq sign (or other specified delimiter character) and creates a data file which contains a header structure and a table of file offsets for each group of lines\&. This allows random access of the strings\&.
.PP
The output file, if not specified on the command line, is named
\fIsourcefile\&.dat\fR\&.
.PP
The purpose of
\fBunstr\fR
is to undo the work of
\fBstrfile\fR\&. It prints out the strings contained in the sourcefile, which is
\fIdatafile\&.ext\fR
without its extension, or
\fIdatafile\fR
if no extension is specified (in this case, the extension
\fB\&.dat\fR
is added to the name of the datafile) in the order that they are listed in the header file
\fIdatafile\fR\&. If no
\fIoutputfile\fR
is specified, it prints to standard output; otherwise it prints to the file specified\&.
\fBunstr\fR
can also universally change the delimiter character in a strings file\&. It is possible to create sorted versions of input files by using
\fBstrfile \-o\fR
and then using
\fBunstr\fR
to dump them out in the table order\&.
.SS "Options"
.PP
The options are as follows:
.PP
\fB\-c \fR\fIchar\fR
.RS 4
Change the delimiting character from the percent sign to
\fIchar\fR\&. This option is available for both
\fBstrfile\fR
and
\fBunstr\fR\&.
.RE
.PP
\fB\-i\fR
.RS 4
Ignore case when ordering the strings\&.
.RE
.PP
\fB\-o\fR
.RS 4
Order the strings in alphabetical order\&. The offset table will be sorted in the alphabetical order of the groups of lines referenced\&. Any initial non\-alphanumeric characters are ignored\&. This option causes the STR_ORDERED bit in the header
\fIstr_flags\fR
field to be set\&. (It also now really does sort! It didn\*(Aqt used to)\&.
.RE
.PP
\fB\-r\fR
.RS 4
Randomize access to the strings\&. Entries in the offset table will be randomly ordered\&. This option causes the STR_RANDOM bit in the header
\fIstr_flags\fR
field to be set\&. (And really does randomize)
.RE
.PP
\fB\-s\fR
.RS 4
Run silently; don\*(Aqt give a summary message when finished\&.
.RE
.PP
\fB\-x\fR
.RS 4
Note that each alphabetic character in the groups of lines is rotated 13 positions in a simple caesar cypher\&. This option causes the STR_ROTATED bit in the header
\fIstr_flags\fR
field to be set\&. Note that it
\fBdoes not\fR
rotate the strings\-\-that operation must be performed separately\&.
.RE
.SS "Header"
.PP
The format of the header is:
.PP
#define VERSION 1
unsigned long str_version; /* version number */
unsigned long str_numstr; /* # of strings in the file */
unsigned long str_longlen; /* length of longest string */
unsigned long str_shortlen; /* shortest string length */
#define STR_RANDOM 0x1 /* randomized pointers */
#define STR_ORDERED 0x2 /* ordered pointers */
#define STR_ROTATED 0x4 /* rot\-13\*(Aqd text */
unsigned long str_flags; /* bit field for flags */
char str_delim; /* delimiting character */
.PP
All fields are written in network byte order\&.
.SH "BUGS"
.PP
Fewer now, one hopes\&. However, fortunes (text strings) beginning with a blank line appear to be sorted between random letters\&. This includes ASCII art that contains no letters, and first lines that are solely non\-alphanumeric, apparently\&. I\*(Aqve no idea why this should be\&.
.SH "OTHER USES"
.PP
What can you do with this besides printing sarcastic and obscene messages to the screens of lusers at login or logout?
.PP
There
\fBare\fR
some other possibilities\&. Source code for a sample program,
\fBrandstr\fR, is included with this distribution: randstr splits the difference between
\fBunstr\fR
and
\fBfortune\fR\&. It reads a single, specified file, and randomly selects a single text string\&.
.PP
1
.RS 4
Include
\fIstrfile\&.h\fR
into a news reading/posting program, to generate random signatures\&.
\fBTin\fR(1)
does something similar, in a much more complex manner\&.
.RE
.PP
2
.RS 4
Include it in a game\&. While strfile doesn\*(Aqt support \*(Aqfields\*(Aq or \*(Aqrecords\*(Aq, there\*(Aqs no reason that the text strings can\*(Aqt be consistent: first line, a die roll; second line, a score; third and subsequent lines, a text message\&.
.RE
.PP
3
.RS 4
Use it to store your address book\&. Hell, some of the guys I know would be as well off using it to decide who to call on Friday nights (and for some, it wouldn\*(Aqt matter whether there were phone numbers in it or not)\&.
.RE
.PP
4
.RS 4
Use it in \*(Aqlottery\*(Aq situations\&. If you\*(Aqre an ISP, write a script to store login names and GECOS from
/etc/passwd
in strfile format, write another to send \*(Aqcongratulations, you\*(Aqve won\*(Aq to the lucky login selected\&. The prize might be a month\*(Aqs free service, or if you\*(Aqre AOL, a month free on a real service provider\&.
.RE
.SH "SEE ALSO"
.PP
\fBbyteorder\fR(3),
\fBfortune\fR(6)
.SH "HISTORY"
.PP
The
\fBstrfile\fR
utility first appeared in 4\&.4BSD\&. This version was heavily modified, much of it in ways peculiar to Linux\&. Work has since been done to make the code more generic, and has so far been tested to work with SunOS 4\&.x\&. More platforms are expected to be supported as work continues\&.
|