-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rnm.1.mwiki
698 lines (582 loc) · 29.5 KB
/
rnm.1.mwiki
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
= NAME =
rnm - Bulk rename utility
= SYNOPSIS =
'''rnm''' [''options''] ''file/paths''
= DESCRIPTION =
Renames files/directories in bulk. Naming scheme (''Name String'') can be applied or regex replace can be performed to modify names dynamically. It uses PCRE2 (revised version of PCRE) regex to provide search (and replace) functionality.
It provides versatile options to modify names, delete/replace part of it, indexing, case conversion, insert text, insert various file information like modification time, access time, permission etc.., insert parent directory names and many more.
File search functionality is provided with PCRE2 regex. Fixed string search is also possible.
Operations (rename, changing names, search) are selective of file type (directory, file, link).
Files can be sorted by name, modification time, access time, size, file type (directory, file, link) etc..
It provides an undo functionality to move back unwanted rename operations. Different '''rnm''' operations on different directory remember their own undo history.
Simulations can be run instead of actual rename to view the potential outcome as program output on terminal with the ''-sim'' option.
= USAGE =
<source lang="bash">rnm -ns name_string [other-opts] file/path
rnm -rs "/search/replace/mod" [other-opts] file/path
rnm -ns/f namestring/file/path file/path</source>
= OPTIONS =
<dl>
<dt>-ns ''name-string''</dt>
<dd>Name string. This is generally the new name for the file. Any part in this name string wrapped around with the path delimiter (/) is parsed as a name string rule and the new name is formed accordingly. See <a href="#name-string-rule">NAME STRING RULE</a> for details.</dd>
<dt>-ns/f ''file-path''</dt>
<dd>Name string file. File containing name strings per line. It makes a new name string rule available, namely ''/nsf/'', which is generated by parsing the name string taken from the corresponding line in the file. Another additional rule ''/l/'' becomes available for line number. If ''-ns'' or ''-rs'' is not given, ''/nsf/'' becomes the new name. This option adds a restriction on the number of files to be renamed which is same as the number of non-empty lines in the name string file .</dd>
<dt>-ns/fn ''file-path''</dt>
<dd>Name String file. This takes a null terminated Name String file, i.e a file where filenames/name strings are terminated by null character (''\0'') instead of new line (''\n'').</dd>
<dt>-sl ''start-line''</dt>
<dd>Start Line number in name string file. If start line is 0, it is changed to the highest line number possible in the file. For example, if you want to go from last line to first line, you can pass start line as 0 and end line as 1. Empty lines are always ignored but line numbers are counted. Start line can be greater than end line, for example, start line 25 and end line 12 would mean: go from line 25 to 12. Default start line is 1.</dd>
<dt>-l ''start-line''</dt>
<dd>Same as ''-sl''</dd>
<dt>-el ''end-line''</dt>
<dd>End line number in name string file to stop renaming from. If end line is 0, it is changed to the highest line number possible in the file. For example, if you want to go from first line to last line in the file, pass start line as 1 and end line as 0. Empty lines are always ignored but line numbers are counted. End line can be smaller than start line. Default end line is the highest line number in the file.</dd>
<dt>-linc ''line-increment''</dt>
<dd>The amount line count will be incremented in each iteration for name string file.</dd>
<dt>-ss ''search-regex''</dt>
<dd>Search string. String that will be used to search for files with matching names. This is generally a regex if not passed with ''-ssf'' option. See <a href="#search-string">SEARCH STRING</a> for details. This option can be given multiple times to add search strings.</dd>
<dt>-ss/f ''file-path''</dt>
<dd>Search string file. A file containing search string per line. This option can be given multiple times to add search strings.</dd>
<dt>-ssf ''fixed-search-term''</dt>
<dd>Fixed search string (not treated as regex). See <a href="#search-string">SEARCH STRING</a> for details. This option can be given multiple times to add search strings.</dd>
<dt>-ssf/f ''file-path''</dt>
<dd>Search string file. Contains fixed search string per line. This option can be given multiple times to add search strings.</dd>
<dt>-rs ''replace-string''</dt>
<dd><p>A string in the form:</p>
<pre>/regex/replace/modifier</pre>
<p>It performs regex replace on old filename to construct new name. It uses PCRE2 regex. After performing all the regex replace operations, the resultant string is stored in the name string rule ''/rn/''. It can be used inside a name string or if name string is not given, this will by default become the new name for the current file. See <a href="#replace-string">REPLACE STRING</a> for details. This option can be given multiple times to add replace strings.</p></dd>
<dt>-rs/f ''file-path''</dt>
<dd>Replace string file. A file containing replace string per line. This option can be given multiple times to add replace strings.</dd>
<dt>-si ''start-index''</dt>
<dd>Start index.</dd>
<dt>-i ''start-index'',</dt>
<dd>Same as ''-si''</dd>
<dt>-ei ''end-index''</dt>
<dd>End index. It works on directory index only. When rename is occurring inside a directory for a depth value greater than 0 or negative, directory index is limited to this end index. When incrementing directory index hits this limit, all remaining files/directories/links inside that directory are skipped. All directories and their subdirectories will be subject to this limiting value.</dd>
<dt>-inc ''increment''</dt>
<dd>Increment value (floating point decimal). The amount, index will be incremented or decremented in each iteration. Decremented index is available through name string rule ''/-i/'', ''/-id/'' etc..</dd>
<dt>-if ''INDEX-FLAGS''</dt>
<dd><p>This sets Index flags. This is a '/' separated list of flags that will be used to render the index within it's text field. The general format is:</p>
<source lang="bash">'/flag1/flag2/flag3=value/...'</source>
<p>Valued flags are set with ''flag=value'' format. Ex:</p>
<source lang="bash">'/uppercase/filler=*/'</source>
See <a href="#index-flags">INDEX FLAGS</a> for details.</dd>
<dt>-ifl ''index-field-length''</dt>
<dd>Index field length. Non occupied field will be filled with index field fillers (set with ''-iff''). ''iff'' is set to the character ''0'' by default.</dd>
<dt>-iff ''index-field-filler''</dt>
<dd>Non-occupied field in index will be filled with a character set by this option.</dd>
<dt>-ifp ''index-field-precision''</dt>
<dd>Index is a floating point decimal (by default) value. This sets the precision.</dd>
<dt>-dp ''depth''</dt>
<dd>Depth of folder. -1(any negative number) means unlimited depth i.e all files and subdirectories will be included. Other values may be 0 1 2 3 etc... Default depth is ''0'', i.e directory contents will be ignored.</dd>
<dt>-duh ''seconds''</dt>
<dd>Delete undo history older than the given seconds.</dd>
<dt>-duhd ''days''</dt>
<dd>Delete undo history older than the given days.</dd>
<dt>-fo</dt>
<dd>File only mode. Only files are renamed (no directory or link). Goes to subdirectory/s if depth (''-dp'') is greater than 0 or negative.</dd>
<dt>-do</dt>
<dd>Apply rename on directory only. Goes to subdirectories if depth is greater than 0 or negative.</dd>
<dt>-lo</dt>
<dd>Link only mode. Goes to subdirectories if depth is greater than 0 or negative.</dd>
<dt>-xd</dt>
<dd>Exclude directory. Exclude any and all directories and their contents. The depth value ''-dp'' will have no effect if this option is given. This is by default equivalent to file+link only mode if not overridden by other options. (You can read this option as cross-d which probably makes more sense)</dd>
<dt>-xf</dt>
<dd>Exclude file. Depth value ''-dp'' is respected and goes to subdirectories if depth is greater than 0 or negative. This is by default equivalent to directory+link only mode if not overridden by other options. (You can read this option as cross-f which probably makes more sense)</dd>
<dt>-xl</dt>
<dd>Exclude link. Depth value ''-dp'' is respected and goes to subdirectories if depth is greater than 0 or negative. This is by default equivalent to directory+file only mode if not overridden by other options. (You can read this option as cross-l which probably makes more sense)</dd>
<dt>-fl</dt>
<dd>Set follow link flag. After passing this option, any file that is a link will be followed to their original target. If there are multiple links associated, only the end target (the original) will be renamed. This option must be passed before the file path that needs to be followed. Passing it after the file path will have no effect on the previous files.</dd>
<dt>-nfl</dt>
<dd>Unset follow link flag. After this option is passed, previously set ''--follow-link'' flag will be unset and symbolic links after this point will not be followed unless it gets overridden by another ''-fl'' option.</dd>
<dt>-cd</dt>
<dd>Count directory in reserved index, regardless of other options. Reserves indexes for directories even if it is file only or link only mode.</dd>
<dt>-cf</dt>
<dd>Count file in reserved index, regardless of other options. Reserves indexes for files even if it is directory only or link only mode.</dd>
<dt>-cl</dt>
<dd>Count link in reserved index, regardless of other options. Reserves indexes for links even if it is directory only or file only mode.</dd>
<dt>-s</dt>
<dd><p>Sort files in natural order (Human perceivable order). This option can be modified to use other sorting methods. For example: ''-s/g'' or ''--sort/general'' will sort the file in general (alphabetic) order. Available sorting methods:</p>
<source lang="bash">-s : default sort (natural sort)
-s/g : general sort
-s/n : natural sort
-s/mt : sort according to file modification time (recent first)
-s/at : sort according to file access time (recent first)
-s/ct : sort according to file status change time (recent first)
-s/sz : sort according to file size (larger first)
-s/d : prioritize directory when sorting
-s/f : prioritize file when sorting
-s/l : prioritize link when sorting
-s/r : reverse the order sorted by above methods
-s/no : No sort</source></dd>
<dt>-y</dt>
<dd>Confirm Yes to all and suppress output for every file.</dd>
<dt>-u</dt>
<dd>Undo rename. Undo depends on working directory. If an '''rnm''' command is run from ~/somedir, to undo this operation one must run '''rnm''' from the same directory again or provide the path with ''-up'' option. Undo is a very aggressive operation, it bypasses all security check.</dd>
<dt>-up</dt>
<dd>Undo rename from a given path. After every successful rename (or undo), the undo path is set to the working directory where '''rnm''' is run from.</dd>
<dt>-ups</dt>
<dd>Show available undo paths.</dd>
<dt>-q</dt>
<dd>Quiet operation (speedy operation, includes <code>-y</code>).</dd>
<dt>-qq</dt>
<dd>Suppress even error messages.</dd>
<dt>-f</dt>
<dd>Force rename. Enables renaming some restricted files except ''/''.</dd>
<dt>-ff</dt>
<dd>Double force. Bypass all restrictions.</dd>
<dt>--</dt>
<dd>If this option is passed, anything and everything after it will be taken as file path. Put all options before it.</dd>
<dt>-h</dt>
<dd>Show help menu.</dd>
<dt>-v</dt>
<dd>Show version info.</dd>
<dt>-sim</dt>
<dd>This runs a simulation of rename instead of actual rename operation.</dd></dl>
= PROPERTIES OF OPTIONS =
'''Options are not sequential''' (except <code>-h</code>, <code>-v</code>, <code>-fl</code>, <code>-nfl</code> <code>-u</code>, <code>-up</code>, <code>-ups</code>, <code>-duh</code>, <code>-duhd</code>).
For example, the two commands below are the same:
<source lang="bash">rnm filepath -ns name
rnm -ns name filepath</source>
'''Giving the same type of option multiple times is sequential.''' If an option is capable of overloading, it adds the given values sequentially, on the other hand, if the option can not be overloaded, it is overwritten. For example:
<source lang="bash">rnm -rs '/_/-/g' -rs '/-/./g' ./*</source>
In above, the first replace string is applied first replacing all underscores to hyphen, then the second one replaces all hyphens to dot. The final result is: All underscores and hyphens is replaced with dot. The behavior is the same if they are glued together with semicolon as a delimiter (<code>-rs '/_/-/g;/-/./g'</code>)
'''Options -h, -v, -duh and -duhd are treated as First come, first served''' and possess the highest priority.
'''The behavior of -fl''' (''--follow-link'') and '''-nfl''' (''no-follow-link'') option depends on their position. For example:
<source lang="bash">rnm -ns '/fn/ /id/' link1 -fl link2 \
-nfl link3 link4 -fl link5 link6</source>
will rename the symbolic links as:
# ''link1'' will itself be renamed, it won't be followed
# ''link2'' will be followed and its target will be renamed because ''--follow-link'' flag was '''set''' before it.
# ''link3'' and ''link4'' won't be followed because ''--follow-link'' flag was '''unset''' by ''-nfl'' before these links.
# ''link5'' and ''link6'' will be followed because ''--follow-link'' flag was '''set''' again before these links.
'''Priority of undo related options:''' <code>-ups</code> > <code>-up</code> > <code>-u</code>.
'''Options are case insensitive''', i.e ''-ssF'' and ''-ssf'' are the same.
= FULLY SPECIFIED NAMES FOR OPTIONS =
All of the shorthand option names have equivalent full names. The use of either of them is the same, i.e all option or sub-option should be separated with space. The rule --someopt=value won't apply, instead '''rnm''' uses the syntax '''--someopts value'''. The following table shows the full names corresponding to the shorthand names:
{|
! Opt name
! Full name
|-
| -ns
| --name-string
|-
| -ns/f
| --name-string-file
|-
| -ns/fn
| --name-string-file-null-terminated
|-
| -l
| --line
|-
| -sl
| --start-line
|-
| -el
| --end-line
|-
| -linc
| --line-increment
|-
| -ss
| --search-string
|-
| -ss/f
| --search-string-file
|-
| -ssf
| --search-string-fixed
|-
| -ssf/f
| --search-string-fixed-file
|-
| -rs
| --replace-string
|-
| -rs/f
| --replace-string-file
|-
| -i
| --index
|-
| -si
| --start-index
|-
| -ei
| --end-index
|-
| -inc
| --increment
|-
| -if
| --index-flags
|-
| -ifp
| --index-field-precision
|-
| -ifl
| --index-field-length
|-
| -iff
| --index-field-filler
|-
| -dp
| --depth
|-
| -duh
| --delete-undo-history
|-
| -duhd
| --delete-undo-history-day
|-
| -fo
| --file-only
|-
| -do
| --directory-only
|-
| -lo
| --link-only
|-
| -xd
| --exclude-directory
|-
| -xf
| --exclude-file
|-
| -xl
| --exclude-link
|-
| -fl
| --follow-link
|-
| -nfl
| --no-follow-link
|-
| -cd
| --count-directory
|-
| -cf
| --count-file
|-
| -cl
| --count-link
|-
| -s
| --sort
|-
| -s/g
| --sort/general
|-
| -s/n
| --sort/natural
|-
| -s/no
| --sort/none
|-
| -s/mt
| --sort/mtime
|-
| -s/at
| --sort/atime
|-
| -s/ct
| --sort/ctime
|-
| -s/d
| --sort/directory
|-
| -s/f
| --sort/file
|-
| -s/l
| --sort/link
|-
| -s/sz
| --sort/size
|-
| -s/r
| --sort/reverse
|-
| -y
| --yes
|-
| -u
| --undo
|-
| -up
| --undo-path
|-
| -ups
| --undo-path-show
|-
| -q
| --quiet
|-
| -qq
| --quiet-quiet
|-
| -f
| --force
|-
| -ff
| --force-force
|-
| -h
| --help
|-
| -v
| --version
|-
| -sim
| --simulation
|}
= TERMINOLOGY =
These are the technical terms that will be thrown around a bit for convenience.
== RESERVED INDEX ==
Index will be incremented even if any file is skipped renaming in order to reserve the index for that skipped file. These are constructed by appending the <code>r</code> character with the index identifier, e.g ''/ir/'', ''/-idr/'' etc..
== REVERSE INDEX ==
Decrementing index. These are constructed by inserting a ''-'' before the index identifier e.g ''/-i/'', ''/-id/'' etc..
== NAME STRING ==
A string, that is parsed to create names for new files. It can be fixed name which then can be modified for different files at runtime. Name sting is parsed by some rules (Name String Rule). (must be wrapped around with filepath delimiter ''/'').
== NAME STRING RULE ==
A name string rule starts and ends with a ''/'' character, These special forms are parsed and expanded to their special meaning. For example ''/i/'' would expand to file index.
=== INDEX RULES ===
# ''/i/'' : Index.
# ''/ir/'' : Reserved index.
# ''/id/'' : Directory index (index inside a directory).
# ''/idr/'' : Reserved directory index
# ''/-i/'' : Inverse index.
# ''/-ir/'' : Inverse reserved index.
In general, ''-i'' in the above name string rules will mean inverse index conforming to their meaning.
=== COUNTERS ===
# ''/dc/'' : Directory count
# ''/l/'' : Line number from ''Name String File''.
Base conversion, scientific conversion and Latin conversions are applicable on these counters. See <a href="#extended-index-rules">EXTENDED INDEX RULES</a>.
==== EXTENDED INDEX RULES ====
'''Base conversion:'''
<source lang="bash">/<rule>-b<base>/</source>
For example, ''/i-b8/'' will convert the index to octal. <base> can be 2 to 36.
'''Scientific conversion:'''
<source lang="bash">/<rule>-s/</source>
For example, ''/i-s/'' will convert the index to scientific form (n.fE+-p)
'''Latin conversion:'''
<source lang="bash">/<rule>-l/</source>
For example, ''/i-l/'' will convert the index to Latin form.
'''Examples:'''
<source lang="bash">#indexing:
rnm -ns '/fn/ /i/' ./*
#indexing by directory:
rnm -ns '/fn/ /id/' ./*
#indexing with binary number
rnm -ns '/fn/ /id-b2/' ./*
#indexing with scientific number
rnm -ns '/fn/ /id-s/' ./*
#indexing with latin number
rnm -ns '/fn/ /id-l/' ./*</source>
=== FILENAME ===
# ''/fn/'' : Full name of the file.
# ''/n/'' : File name without extension.
# ''/e/'' : File extension.
# ''/rn/'' : Replaced Name, generated by replace strings.
# ''/pd/'' : Parent directory name of the current file or directory.
# ''/wd/'' : Current working directory name.
# ''/nsf/'': Name (or name string) from name string file.
==== EXTENDED PD RULES ====
Its general format is
<source lang="bash">/pd<digits>-<digits>-<delimiter>/
or
/pd<from>-<to>-<delimiter>/</source>
It specifies a bidirectional range of parent directories.
# ''/pd0/'' is the immediate parent directory name, ''pd1'' is the directory before ''pd0'' and so forth.
# ''/pd0-2-+/'' will expand by concatenating pd0 to pd2 and with the ''delimiter'' in-between (e.g ''dir0+dir1+dir2'').
# ''/pd2-0-+/'' will do the same as above but in reverse order (''dir2+dir1+dir0'').
# In place of ''<digits>'' you can supply ''e'' which generally means the 'end' i.e the farthest level available from the immediate parent.
# In place of ''<digits>'' you can also supply ''w'' which means the level of working directory.
# Any unavailable level of directory will be ignored and be replaced with empty string.
'''Examples:'''
<source lang="bash">#Appending parent directory names
#with space in-between
rnm -ns '/pd0-e- /' ./*
rnm -ns '/pdw-0- /' ./*</source>
=== INFO-NAME STRING RULE ===
This name string rule provides basic information about a file, directory or link. The general format of this rule is:
<source lang="bash">/info-prop-op/</source>
where ''info-'' is the identifier for this rule, ''prop'' is the property name and ''op'' is an optional entry which is used for additional formatting. Property names ('''prop''') are case insensitive.
'''File time:'''
; ''mtime''
: File modification time. '''op''': Time format (default ''%d-%m-%Y'')
; ''mtime,GMT''
: File modification time in GMT. '''op''': Time format (default ''%d-%m-%Y'')
; ''atime''
: File access time. '''op''': Time format (default ''%d-%m-%Y'')
; ''atime,GMT''
: File access time in GMT. '''op''': Time format (default ''%d-%m-%Y'')
; ''ctime''
: File status change time. '''op''': Time format (default ''%d-%m-%Y'')
; ''ctime,GMT''
: File status change time in GMT. '''op''': Time format (default ''%d-%m-%Y'')
'''Time Formats:'''
Time format string is used to specify an arbitrary date-time format. For example, ''%d-%m%-Y'' would produce something like ''22-01-2017''. This format string is exactly the same as the format string taken by <code>strftime</code> (3). Some frequently used character sequences:
* %a, %A: week day name short and full respectively
* %b, %B: month name short and full
* %d: month day number
* %H: Hour in 24hr format
* %I: Hour in 12hr format
* %j: Day of the year (001-366)
* %m: month number
* %M: Minute
* %p: AM/PM
* %P: am/pm (lowercase)
* %S: second in a minute
* %t: tab character
* %u: week day number (1-7)
* %%: A literal % character.
You can find a lot more of these character sequences described in details [http://man7.org/linux/man-pages/man3/strftime.3.html#DESCRIPTION here].
'''Example:'''
<source lang="bash">rnm -ns '/fn/ - /info-mtime-%d-%m-%Y %I:%M:%S %p/' ./*
#The above appends modification time to the file names.</source>
'''File size:'''
; ''size''
: Size of file. '''op''': Unit (default: chosen according to size)
; ''blksize''
: Size of system I/O block. '''op''': Unit (default: chosen according to size)
; ''blocks''
: Number of 512B blocks. '''op''': N/A
'''Other info:'''
; ''perm''
: File permission. '''op''': Either ''ls'' or ''oct''.
; ''uid''
: Owner ID. '''op''': N/A
; ''gid''
: Group ID. '''op''': N/A
; ''dev''
: Device ID. '''op''': N/A
; ''inode''
: Inode number. '''op''': N/A
; ''mode''
: File mode. '''op''': N/A
; ''nlink''
: Number of hard links. '''op''': N/A
'''Examples:'''
<source lang="bash">#Appending different file info to their names
rnm -ns '/fn/ size: /info-size/' ./*
rnm -ns '/fn/ size: /info-size-1024/' ./* #size in KB
rnm -ns '/fn/ octperm: /info-perm-oct/ lsperm: /info-perm-ls/' ./*
rnm -ns '/fn/ uid: /info-uid/' ./*</source>
== NAME STRING FILE ==
A file which contains a list of name string (one per line). Empty lines will be ignored but line number will be counted.
Each name string taken from this file is applied to each file, thus if there's 100 name strings in this file, their will be 100 rename only. All these name strings are parsed the same way as regular name strings given with ''-ns'' option with an additional rule ''/l/'' (line number).
The generated/extracted name/namestring becomes available through the name string rule ''/nsf/''. If an explicit ''-ns'' (or ''-rs'' and its equivalents) option is not given on the command line, '/nsf/' is taken as the name string by default i.e the new name will be the string expanded by ''/nsf/''.
A null terminated name string file is that one where name strings (i.e filenames) are terminated with null character instead of newline (''\n''). These are generally binary files and can be generated with other tools.
== SEARCH STRING ==
A string that is used to search for files with matching filenames against the search string. By default it is a regex if ''-ssf'' option is not used. It is generally in the form
<source lang="bash">/regex/modifier</source>
where ''regex'' is the regex to search for and available modifiers are ''i'' (case insensitive), ''f'' (file), ''d'' (directory), ''l'' (link), ''!'' (inverse search). If no modifier is used, the regex format can be reduced to ''/regex/'' or simply ''regex''.
Terminate search strings (''/regex/'' format only) with '';'' to provide multiple search strings, e.g '''/s1/i;/s2/;/s3/'''. This applies to fixed search strings as well.
Also you can provide multiple search strings with repeated ''-ss'' and/or ''-ssf'' options and files with repeated ''-ss/f'' and/or ''-ssf/f'' options. These options can be mixed with each other too.
'''Examples:'''
<source lang="bash">#rename only mp3 and mp4 files
rnm -ns '/fn/ /i/' -ss '/.*\.mp(3|4)$/' ./*
#rename everything excluding mp3 and mp4 files
rnm -ns '/fn/ /i/' -ss '/.*\.mp(3|4)$/!' ./*
#rename file with .video in their names
# (fixed string search)
rnm -ns '/fn/ /i/' -ssf '.video' ./*</source>
== INDEX FIELD LENGTH ==
An integer value defining the field length of index. By default empty field will be filled with 0's. For example, if the value is ''3'', then indexes will be ''001'', ''002'', ''003'', etc.. Different filler (other than 0) can be provided with ''-iff'' option.
== REPLACED NAME ==
The name can be modified at runtime using replace string. Replace string will be parsed to create a new ''Name String'' rule: ''/rn/'' which can be used in ''Name String''. If name string is not passed as argument, the new name of the file will be ''/rn/''. ''Replaced Name'' is always generated from the old filename (even when name string file is given).
== REPLACE STRING ==
''Replace String'' is of the form:
<source lang="bash">/regex/replace/modifier</source>
where ''regex'' is the regex to search for and ''replace'' is the string to replace with. ''Name String'' rules are available in ''regex'' and ''replace'' part in Replace String.
Special character sequences for ''replace'' part:
# ''&'' will be taken as the entire match found by the ''regex''.
# ''\1'', ''\2'' etc.. are the captured groups. If you want to isolate a captured group, wrap it around with ''{}''. For example, if you want to put a digit (2) after captured group ''\1'', you can't use it like ''\12''. ''\12'' will mean ''12th'' captured group not ''\1'' appended with a digit (1). In this case isolate the captured group with ''{}'' i.e ''\{1}2''.
# Named captured group can be accessed as ''\{name}''.
# ''\c'' will convert the matched string to lowercase, and ''\C'' will convert it to uppercase. No other character is allowed in replace part if this is used. You can still concatenate different replace strings with '';'' (semicolon).
# to insert a ''&'' literally, use ''\&'' and for ''\'' use ''\\''.
# Modifiers are ''i'' (case insensitive), ''g'' (global), ''f'' (file), ''d'' (directory), ''l'' (link).
''Replace String'' is always performed on old file name (even when name string file is given).
You can provide multiple replace strings with repeated ''-rs'' option and multiple file with repeated ''-rs/f'' options. These options can be mixed with each other too.
Multiple replace strings can also be given by terminating each individual replace strings with '';'' (semicolon):
<source lang="bash">rnm -rs '/.*_/\C/gi;/-/ /g;/#/@/g' ./*</source>
'''Examples:'''
<source lang="bash">#convert to uppercase
rnm -rs '/.*/\C/' ./*
#convert to lowercase
rnm -rs '/.*/\c/' ./*
#replace all @ with - in the names
rnm -rs '/@/-/g'
#Treat files and directories differently
rnm -rs '/@/-/gf;/#/@/gd;'
#the above will replace all @ in file (not directory)
#names to - and all # in directory names to @</source>
== INDEX FLAGS ==
* ''uppercase'' : means uppercase.
* ''showpoint'' : show point regardless if it's an integer or floating point value.
* ''showbase'' : means show base (Hex or Oct).
* ''showpos'' : show + sign for positive numbers.
* ''right'' : adjust right.
* ''left'' : adjust left.
* ''internal'' : adjust internal.
* ''precision'' : set precision. Used as <code>precision=value</code>
* ''length'' : sets length. Used as <code>length=value</code>
* ''filler'' : sets filler. Used as <code>filler=value</code>
== MODIFIERS ==
# ''i'': case insensitive match or replace.
# ''g'': global replace
# ''f'': True if it's a file, otherwise false.
# ''d'': True if it's a directory, otherwise false.
# ''l'': True if it's a link, otherwise false.
# ''!'': inverse search.
The ''f'', ''d'' and ''l'' modifiers are ORed when combined.
=== EXAMPLES: ===
<source lang="bash">rnm file -ns new_file
rnm file -rs "/f/F/"
#-do forces Directory only mode
rnm folder -ns "New Folder" -do
rnm ./New*/* -ns /i/.ext
#This will go inside the New Folder directory
rnm "./New Folder" -ns /id//dc/.ext -dp 1 -fo
# -dp -1 (infinite depth)
rnm "./New Folder" -ns /id//dc/.ext -dp -1 -fo
rnm ./New* -ns /id/.ext -ss "regex"
rnm -ns/f filepath -ns /n//id/.ext
rnm -ns/f filepath</source>
'''Only invalid characters for a file or directory name is the path delimiter (/) and the null character (''\0'').'''
= THINGS TO CARE =
# All options should always be separated by space. For Example: ''-vy'' won't mean two option ''-v'' and ''-y'', rather it will mean a single option ''-vy''.
# Any dangling argument with ''-'' at beginning will be treated as an option and produce error if invalid.
# If filename/path argument may include ''-'' at the beginning, use ''--'' to make all the arguments after this option as paths/names (not options).
# If you run <code>rnm . -ns something</code> or <code>rnm ./ -ns something</code>, your current directory will be renamed (be careful).
# This is a dangerous tool like <code>rm</code>, so use with care. If you make a mistake and do some unwanted rename, run <code>rnm -u</code> to undo (before running any more '''rnm''' command).
# Pass all regex like strings within quotes even if they don't contain any white space.
# To pass a filename that resembles an option, use <code>./</code>, i.e <code>./-ns</code> to pass a file named <code>-ns</code> in the current directory. Or you can use the <code>--</code> option to make it a non-option argument; in that case make sure to pass all "Option" arguments before <code>--</code>, because everything after <code>--</code> will be taken as file path/s.
# A common mistake is to pass files like this: <code>rnm -ns 'something' *</code>, it will work as long as no file names contain ''-'' at the beginning, a safer approach is <code>rnm -ns 'something' ./*</code>
= LIMITS =
'''Maximum length of file name :''' FILENAME_MAX
'''Default latin fallback :''' 55555. After this value Latin conversion will fall back to decimal. You can override this with ''-if'' option by setting ''/latin-fallback=6666/'' (or some other value). Big Latin number may produce much larger name which in turn may give you error due to limit on length of file names.
= LOG DIR =
~/.cache/neurobin/rnm
= EXIT STATUS =
{|
! Status
! Details
|-
| 0
| Success
|-
| 1
| Failure
|-
| 2
| Interrupt
|-
| 3
| Unsafe termination
|-
| 4
| Unknown termination
|}
= BUG REPORT =
https://github.com/neurobin/rnm/issues