-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgurl.1
275 lines (204 loc) · 4.12 KB
/
gurl.1
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
.nh
.TH GURL 1 2022-05-27 budlabs "User Manuals"
.SH NAME
.PP
gurl - ganoo slash URL handler and plumber framework
.SH USAGE
.PP
gurl [--matchers-dir|-d DIR] URL [ARG...]
When \fBgurl\fP is executed it will match it's first
argument, (URL) against rules defined in files named \fB\fCmatch\fR
located in \fBMATCHERS_DIR\fP (\fIdefaults to ~/.config/gurl\fP)
including subdirectories. The syntax for the rules are as
follows:
.PP
.RS
.nf
ACTION: PATTERN
# blank lines and lines starting with sharp (#)
# will be ignored.
ACTION2: PATTERN2
.fi
.RE
.PP
\fIACTION\fP is a command either in \fBPATH\fP or relative to the
\fImatch file\fP\&.
.br
\fIPATTERN\fP is a \fB\fCawk(1)\fR compatible regular expression.
.PP
All arguments passed to \fBgurl\fP will be forwarded to
\fIACTION\fP\&. If \fIACTION\fP is a executable file in
\fBMATCHERS_DIR\fP, the directory of the \fIACTION\fP will be the
actions working directory, \fBMATCHERS_DIR/_lib\fP will be
added to \fBPATH\fP\&.
.PP
If no match is found, \fIACTION\fP is set to \fBMATCHERS_DIR/default\fP\&.
.SH EXAMPLES
.PP
\fBgurl\fP will add the following filestructure the first
time it is invoked. No files or directories are mandatory,
but patterns must be declared in files named \fB\fCmatch\fR . Be
sure to set scripts to be executable. (bash scripts are used
in the example, but any executable files will work).
.PP
.RS
.nf
~/.config/gurl
_lib/
message.sh
ynp.sh
cb.sh
github/
match
repo.sh
ghfile.sh
assets/
vars
youtube/
youtube.sh
.last
match
default
.fi
.RE
.PP
\fB\fC$ gurl https://github.com/budlabs/gurl\fR - this will match
the second pattern in \fB\fCgithub/match\fR and execute
\fB\fCgithub/repo.sh\fR\&. Notice how the path to the action is
relative to match file it is declared in. arguments (the URL
in this case) passed to \fBgurl\fP will get saved to \fB\fC\&.last\fR,
which can be handy when writing the patterns.
.PP
\fB\fC~/.config/gurl/github/match\fR
.PP
.RS
.nf
ghfile.sh: (http[s]?://)?.*github[.]com.*/(blob|raw)/.+
repo.sh: (http[s]?://)?.*github[.]com/[^/]+/[^/]
.fi
.RE
.PP
executables in \fB\fC_lib/\fR can be executed without specifying
the path. And files (assets/vars) can be sourced using a
path relative to the scriptfile.
.PP
\fB\fC~/.config/gurl/github/repo.sh\fR
.PP
.RS
.nf
#!/bin/bash
source assets/vars
[[ $1 =~ (http[s]?://)?.*github[.]com/([^/]+/[^/]+) ]] \\
&& repo=${BASH_REMATCH[2]}
prompt="clone $repo to $clone_dir/${repo#*/}? "
[[ $(ynp.sh "$prompt") = yes ]] && message.sh "you answered yes"
.fi
.RE
.PP
\fB\fC~/.config/gurl/github/assets/vars\fR
.PP
.RS
.nf
clone_dir=$HOME/git/clones
.fi
.RE
.PP
\fB\fC~/.config/gurl/_lib/message.sh\fR
.PP
.RS
.nf
#!/bin/bash
notify-send "$*"
.fi
.RE
.PP
\fB\fC~/.config/gurl/_lib/ynp.sh\fR
.PP
.RS
.nf
#!/bin/bash
echo -e "yes\\nno" | dmenu -p "$1"
.fi
.RE
.PP
\fB\fC~/.config/gurl/_lib/cb.sh\fR
.PP
.RS
.nf
#!/bin/bash
echo -n "$1" | xclip -sel c
.fi
.RE
.PP
\fB\fC~/.config/gurl/github/ghfile.sh\fR
.PP
.RS
.nf
#!/bin/bash
message.sh "$1 is a github file, download link in clipboard"
cb.sh "${1/blob/raw}"
.fi
.RE
.PP
\fB\fC~/.config/gurl/youtube/youtube.sh\fR
.PP
.RS
.nf
#!/bin/bash
message.sh "a youtube link!"
.fi
.RE
.PP
\fB\fC~/.config/.last\fR
.PP
.RS
.nf
https://github.com/budlabs/gurl
.fi
.RE
.PP
\fB\fC~/.config/gurl/default\fR
.PP
.RS
.nf
#!/bin/bash
echo no pattern matching: "$1"
.fi
.RE
.PP
\fB\fC~/.config/gurl/match\fR
.PP
.RS
.nf
youtube/youtube.sh: (http[s]?://)?.*youtube[.]com.*
notify-send: (http[s]?://)?.*google[.]com.*
.fi
.RE
.PP
notice how commands can be used for actions (\fB\fCnotify-send\fR).
.SH OPTIONS
.PP
.RS
.nf
-h, --help | print help and exit
-d, --matchers-dir | override the environment variable MATCHERS_DIR
-v, --version | print version info and exit
.fi
.RE
.SH ENVIRONMENT
.SS XDG_CONFIG_HOME
.PP
defaults to: \fB\fC~/.config\fR
.SS MATCHERS_DIR
.PP
defaults to: \fB\fC$XDG_CONFIG_HOME/gurl\fR
.SH CONTACT
.PP
Send bugs and feature requests to:
.br
https://github.com/budlabs/gurl/issues
.SH COPYRIGHT
.PP
Copyright (c) 2020-2022, budRich of budlabs
.br
SPDX-License-Identifier: BSD-2-Clause