660e4a71c345c66ee5c39918815e6977d1b93d05
[selector.git] / selector.1
1 .TH "SELECTOR" "1.1.2" "April 2010" "Francois Fleuret" "User Commands"
2
3 \" This man page was written by Francois Fleuret <francois@fleuret.org>
4 \" and is distributed under a Creative Commons Attribution-Share Alike
5 \" 3.0 License.
6
7 .SH "NAME"
8
9 selector \- A simple command line utility for dynamic pattern selection
10
11 .SH "SYNOPSIS"
12
13 \fBselector\fP [\fIoptions\fR] [\fI<filename1>\fR [\fI<filename2>\fR ...]]
14
15 .SH "DESCRIPTION"
16
17 \fBselector\fP is a command line utility for interactive real-time
18 pattern matching. It reads the content of the specified files, and as
19 the user types a list of strings separated by ";" (or a regexp), the
20 display is updated in real time to show only the lines containing all
21 the said strings (or matching the regexp).
22
23 This command was mainly designed as a way to search efficiently in the
24 shell history, for which it is substantially better than the standard
25 readline ^R binding. With the -v option, it injects the selected line
26 into the tty input buffer, hence allowing the user to edit the line
27 and execute it as a standard command.
28
29 Selector is also a handy tool to test regexps, or to display menus
30 with many possible choices. For the latter, the -x option allows to
31 specify a label delimiter: the part of each line before that character
32 will appear during the selection, but only the part after that
33 character will be returned.
34
35 Note that because this is an interactive command, the standard input
36 can not be used as one of the input files.
37
38 .SH "KEY BINDINGS"
39
40 Keys corresponding to ASCII codes between " " and "~" add a character
41 to the pattern string. The Backspace key, "^H" and "^?" delete the
42 character immediately on the left of the cursor, while the Delete key
43 and "^D" delete the character at cursor location.
44
45 The Left and Right cursor keys move the editing cursor
46 accordingly. The Up and Down cursor keys move the selected line one
47 entry at a time, and PageUp and PageDown move it by ten entries. The
48 Home and End key move to the top and the bottom of the list
49 respectively. The return key selects the current line and exits.
50
51 The keys "^A", "^E", "^U", and "^K" do somehow what they do in
52 readline, and you can exit selector without doing anything by either
53 interrupting the command with "^C" or by typing "^G" or the Escape
54 key.
55
56 The key "^R" switches between the multi-substring and the regexp
57 selection mode, and "^I" between the case-sensitive and
58 case-insensitive modes.
59
60 .SH "OPTIONS"
61 .TP
62 \fB-h\fR, \fB--help\fR
63 display help and exit
64 .TP
65 \fB-m\fR, \fB--monochrome\fR
66 force the monochrome mode
67 .TP
68 \fB-i\fR, \fB--revert-order\fR
69 revert the order of the lines
70 .TP
71 \fB-b\fR, \fB--remove-bash-prefix\fR
72 remove the numeric prefix from bash history
73 .TP
74 \fB-z\fR, \fB--remove-zsh-prefix\fR
75 remove the time prefix from zsh history
76 .TP
77 \fB-d\fR, \fB--remove-duplicates\fR
78 remove duplicated lines (note that you can have two different lines
79 with the same visible part if you use the -x option)
80 .TP
81 \fB-e\fR, \fB--regexp\fR
82 start in regexp mode
83 .TP
84 \fB-a\fR, \fB--case-sensitive\fR
85 start in case sensitive mode
86 .TP
87 \fB-n\fR, \fB--exclamation-negates\fR
88 substrings starting with an exclamation point must be absent for a line
89 to match
90 .TP
91 \fB-q\fR, \fB--no-beep\fR
92 make a flash instead of a beep when there is an edition error
93 .TP
94 \fB--\fR, \fB--rest-are-files\fR
95 state that all following arguments are filenames
96 .TP
97 \fB--bash\fR
98 standard setting for bash history search, same as
99
100 -b -i -d -v -w -l ${HISTSIZE}
101 .TP
102 \fB-t \fI<title>\fR, \fB--title \fI<title>\fR
103 add a title in the modeline
104 .TP
105 \fB-c \fI<colors>\fR, \fB--colors \fI<colors>\fR
106 select the modeline and highlight color numbers with a color list of
107 the form
108
109 \fI<fg_modeline>,<bg_modeline>,<fg_highlight>,<bg_highlight>\fR
110 .TP
111 \fB-v\fR, \fB--inject-in-tty\fR
112 inject the selected line into the tty input buffer
113 .TP
114 \fB-w\fR, \fB--add-control-qs\fR
115 add ^Q between characters during tty injection to quote control characters
116 .TP
117 \fB-o \fI<filename>\fR, \fB--output-file \fI<filename>\fR
118 write the selected line into the specified file
119 .TP
120 \fB-s \fI<separator>\fR, \fB--pattern-separator \fI<separator>\fR
121 specify the character to separate the substrings in the search pattern
122 .TP
123 \fB-x \fI<separator>\fR, \fB--label-separator \fI<separator>\fR
124 specify the character to separate what to show to the user during the
125 selection from the line to return
126 .TP
127 \fB-l \fI<number>\fR, \fB--number-of-lines \fI<number>\fR
128 specify the maximum number of lines to take into account
129
130 .SH "EXAMPLES"
131
132 To use selector to search into your bash history
133
134 .B selector -q --bash <(history)
135
136 To show a list of directories and insert a cd command to the selected
137 one (using @ as a separator)
138
139 .B selector -v -x @ <(find . -type d | awk \(aq{print $0\(dq@cd \(dq$0}\(aq)
140
141 To select a line in a long text and returns the line number (this
142 command uses ^A as a separator, hence there will be problems if the
143 file contains ^A)
144
145 .B selector -v -x ^A <(awk < something.txt \(aq{ print $0\(dq^A\(dqNR }\(aq)
146
147 .SH "KEYBINDING IN BASH"
148
149 You can associate selector to a single key in bash by using the
150 command 'bind' in your bash initialization file. For instance, to
151 associate it to M-r (that is, the "Alt" and "r" key pressed together),
152 just add something like
153
154 bind \(aq\(dq\\C-[r\(dq:\(dq\\C-a\\C-kselector --bash <(history)\\C-m\(dq\(aq
155
156 in your
157 .IR ~/.bashrc .
158
159 This binding uses the control character ^A to put the cursor to the
160 mostleft location and ^K to erase the current content of the readline
161 buffer, and it simulates the enter key with ^M.
162
163 Note that depending on the configuration of your system, the sequence
164 associated to the M-r key, which is here "C-[r", may differ. To figure
165 it out, simply press C-q followed by M-r in the console.
166
167 .SH "BUGS"
168
169 There are modeline display problems if the pattern is too long. This
170 program does not handle multibyte characters.
171
172 The \fB-v\fR option does not work on FreeBSD 8.0 since the TIOCSTI
173 ioctl request is broken.
174
175 .SH "AUTHOR"
176
177 Written by Francois Fleuret <francois@fleuret.org> and distributed
178 under the terms of the GNU General Public License version 3 as
179 published by the Free Software Foundation. This is free software: you
180 are free to change and redistribute it. There is NO WARRANTY, to the
181 extent permitted by law.