space.c, space.1: New `-l' option to handle trailing blank lines.
[misc] / space.1
... / ...
CommitLineData
1.\" -*-nroff-*-
2.ie t .ds o \(bu
3.el .ds o *
4.de hP
5.IP
6\fB\h'-\w'\\$1'u-1m'\\$1\h'1m'\fP\c
7..
8.TH space 1 "27 January 2007" "Straylight/Edgeware"
9.SH NAME
10space \- check and fix whitespace in files
11.SH SYNOPSIS
12.B space
13.RB [ \-clmtuv ]
14.RB [ \-i \c
15.RI [ backup ]]
16.RI [ file ...]
17.SH DESCRIPTION
18The (low-budget)
19.B space
20program identifies and fixes problematic use of whitespace in text
21files. In particular, it will notice and (if you want) fix
22.hP \*o
23.I trailing whitespace
24\(en tabs and spaces just before a newline;
25.hP \*o
26.I spaces before tabs
27\(en which are obviously pointless;
28.hP \*o
29.I end-of-file in mid-line
30\(en which confuses a number of programs,
31.BR diff (1)
32not least;
33.hP \*o
34.I trailing blank lines
35\(en which some editors, notably Emacs, introduce by default;
36.hP \*o
37.I groups of spaces which could be replaced by tabs
38\(en replacing them with the appropriate tab characters; or
39.hP \*o
40.I all tab characters
41\(en replacing them with appropriate numbers of spaces.
42.PP
43The program is capable of fixing files in place (leaving backups if you
44ask for them).
45.PP
46The following command-line options are recognized.
47.TP
48.B \-h
49Give a short help message describing the options available.
50.TP
51.B \-c
52Just check files, exiting zero if they're all OK, or 1 if there are
53whitespace problems with any of them; exit 32 if there are actual
54errors. You may want the
55.B \-v
56option with this; without it,
57.B space
58is silent.
59.TP
60.B \-l
61Check the file for trailing blank lines, i.e., lines containing only
62horizontal whitespace. With
63.BR \-v ,
64report if the file has trailing blank lines; without
65.BR \-c ,
66remove these trailing blank lines from the output.
67.TP
68.BR \-i [ \fIbackup ]
69Modify all the
70.IR file s
71in place. During processing, the fixed copy of the file is written to
72some new name not currently in use. If the processing was successful,
73the old
74.I file
75is renamed to
76.I file "" backup
77and the new file is renamed to
78.IR file .
79If something very complicated goes wrong at just the right moment, it's
80possible that you'll be left with just
81.I filebackup
82but that's not very likely. The new file is created with the same
83permissions as the old file, but no attempt is made to give it the same
84owner or anything like that.
85.TP
86.B \-m
87Worry about tabs in the middle of lines as well as tabs forming the
88initial indentation. Normally, identify (and fix) tabs preceded by
89spaces in the middle of lines; with
90.BR \-t ,
91fix all groups of whitespace which could be turned into tabs.
92.TP
93.B \-t
94Turn runs of horizontal whitespace into tabs where possible.
95With
96.BR \-c ,
97only complain about runs of space which could be turned into tabs but
98don't actually do anything. By default, only runs of whitespace at the
99starts of lines are affected. With
100.BR \-m ,
101however, all runs of whitespace are considered to be fair game. The
102rules for internal whitespace are as follows. A run at the start of a
103line, or which contains a tab is always fair game; a run of two or more
104spaces is fair game
105.I unless
106it follows a
107.RB ` . '
108or
109.RB ` : '
110character, either immediately or separated only by
111.RB ` """" '
112or
113.RB ` ' '
114characters, in which case three spaces are required. This is because
115some typists (including the author) put two spaces after a full stop,
116and don't want them randomly turning into tabs for no good reason.
117.TP
118.B \-u
119Turn tabs into appropriate numbers of spaces. With
120.BR \-c ,
121only complain about finding tabs, but don't actually do anything. All
122tabs are considered fair game here and the
123.B \-m
124option is ignored.
125.PP
126Tab stops are assumed to occur every eight columns, as is usual.
127.SH BUGS
128There's no way yet of controlling where the tab stops are.
129.PP
130This space program doesn't even attempt moon landings. The space man
131page doesn't have wiggly antennae.
132.PP
133The jokes in the man page are somewhat lame.
134.SH AUTHOR
135Mark Wooding, <mdw@distorted.org.uk>