-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrex.cr
337 lines (186 loc) · 5.4 KB
/
rex.cr
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
if ARGV.size < 1
help()
end
directory = Dir.current + "/"
args = {
:regex => //,
:string => ""
}
options = {
:keep => false,
:exists => "ask",
:folders => false,
:recursive => false,
:silent => false
}
ARGV.each do |arg|
if arg[0] == '-'
if match = arg.match(/^(-{1,2})([^=]*)=?(.+)?/)
groups = match.captures
hyphens = groups[0]
option = groups[1]
if groups.size > 2
path = groups[2]
end
if hyphens && option # Avoid compiler error
if option.size == 1 && arg[1] == '-'
puts "Error: Invalid option --#{option}"
puts "Use a single - for short hand options"
exit 1
elsif option.size > 1 && arg[1] != '-'
puts "Error: Invalid option -#{option}"
puts "Use -- for full option names"
exit 1
end
case option
when "d", "directory"
if path
if path[0] == '/'
directory = path
else
directory += path
end
if File.exists? directory
if !File.directory? directory
puts "Error: Path is not a directory"
exit 1
end
else
puts "Error: No such file or directory #{path}"
exit 1
end
if directory[-1] != "/"
directory += "/"
end
else
puts "Error: #{hyphens + option} must specify directory"
puts "Example usage: #{hyphens + option}:/path/to/directory"
exit 1
end
when "e", "exists"
if path
if ["ask","skip","add","cancel"].includes? path
options[:exists] = path
else
puts "Error: #{hyphens + option}=#{path} invalid option"
puts "Options are ask(default), skip, add, cancel"
exit 1
end
else
puts "Error: #{hyphens + option} must specify option"
puts "Options are ask(default), skip, add, cancel"
exit 1
end
when "k", "keep"
options[:keep] = true
when "h", "help"
help()
when "r", "recursive"
options[:recursive] = true
when "f", "folders"
options[:folders] = true
when "s", "silent"
options[:silent] = true
else
puts "Error invalid option #{hyphens + option}"
exit 0
end
end
end
else
if args[:regex] == //
args[:regex] = Regex.new arg
elsif args[:string] == ""
args[:string] = arg
else
puts "Too many arguments"
exit 1
end
end
end
def help
puts "
Bulk rename files with regex
Replaces every match with a provided string
Usage: rename [options] Regex String
Options:
-d, --directory=directory the path to the target directory
-e, --exists=[option] choose what happens if file already exists
options are ask(default), skip, add, cancel
-f, --folders rename folders
-h, --help show this help
-k, --keep keep file extensions
-r, --recursive search files in subfolders
-s, --silent reduces output by ommiting filename changes
Notes:
Backslashes must either be escaped or in quotes
Anything with whitespaces must be in quotes
Examples:
rename -e \\\\.html$ .php
rename -r -f \"file\" \"file name\"
"
exit 1
end
def check (orig, ext, try, name=orig)
if File.exists? name + ext
try += 1
try = check(orig, ext, try, "#{orig} #{try}")
end
return try
end
puts "Renaming files..."
def rename (directory,args,options)
Dir.glob(directory + "*").sort.each do |f|
if File.directory?(f)
if options[:recursive]
rename(f + "/",args,options)
end
if !options[:folders]
next
end
end
ext = File.extname(f)
base = File.basename(f, ext)
file = base + ext
if options[:keep]
base = base.sub(args[:regex], args[:string])
newName = base + ext
else
newName = file.sub(args[:regex], args[:string])
ext = File.extname(newName)
base = File.basename(newName, ext)
end
if file != newName
if (try = check(directory + base,ext, 1)) > 1
ask = "ask"
if options[:exists] == "ask"
puts "File #{newName} already exists [(S)kip/(a)dd/(o)verwrite/(c)ancel]"
ask = gets
while ask && !ask.match /^$|^S(kip)?$|^A(dd)?$|^O(verwrite)?$|^C(ancel)?$/i
puts "Invalid option"
ask = gets
end
end
if ask # Avoid compiler error
if options[:exists] == "skip" || ask.match /^$|^S(kip)?$/i
if !options[:silent]
puts "Skipped #{file}"
end
next
elsif options[:exists] == "add" || ask.match /^A(dd)?$/i
newName = "#{base} #{try}#{ext}"
elsif options[:exists] == "cancel" || ask.match /^C(ancel)?$/i
puts "Operation cancelled"
exit 1
end
end
end
File.rename(f, directory + newName)
if !options[:silent]
puts file + " to " + newName
end
end
end
end
rename(directory,args,options)
puts "Renaming complete."