Blame


1 b79428b4 2022-07-13 src .Dd July 07, 2022
2 b79428b4 2022-07-13 src .Dt RENE 1
3 b79428b4 2022-07-13 src .Os
4 b79428b4 2022-07-13 src .Sh NAME
5 b79428b4 2022-07-13 src .Nm rene
6 b79428b4 2022-07-13 src .Op Fl ailnov
7 b79428b4 2022-07-13 src .Nd rename files
8 b79428b4 2022-07-13 src .Sh SYNOPSIS
9 b79428b4 2022-07-13 src .Nm
10 b79428b4 2022-07-13 src .Ar from to file ...
11 b79428b4 2022-07-13 src .Sh DESCRIPTION
12 b79428b4 2022-07-13 src The utility
13 b79428b4 2022-07-13 src .Nm
14 b79428b4 2022-07-13 src renames the supplied
15 b79428b4 2022-07-13 src .Ar files
16 b79428b4 2022-07-13 src by replacing the first occurence of
17 b79428b4 2022-07-13 src .Ar from
18 b79428b4 2022-07-13 src with
19 b79428b4 2022-07-13 src .Ar to .
20 b79428b4 2022-07-13 src .Pp
21 b79428b4 2022-07-13 src The options are as follows:
22 b79428b4 2022-07-13 src .Bl -tag -width Ds
23 b79428b4 2022-07-13 src .It Fl a
24 b79428b4 2022-07-13 src Replace all occurences of
25 b79428b4 2022-07-13 src .Ar from
26 b79428b4 2022-07-13 src instead of only the first one. Overrides
27 b79428b4 2022-07-13 src .Fl l .
28 b79428b4 2022-07-13 src .It Fl i
29 b79428b4 2022-07-13 src Prompt to stderr before overriding existing files. A renaming operation is only
30 b79428b4 2022-07-13 src attempted if the response form stdin begins with the character
31 b79428b4 2022-07-13 src .Dq y .
32 b79428b4 2022-07-13 src .It Fl l
33 b79428b4 2022-07-13 src Replace the last occurence of
34 b79428b4 2022-07-13 src .Ar from
35 b79428b4 2022-07-13 src instead of the first one.
36 b79428b4 2022-07-13 src .It Fl n
37 b79428b4 2022-07-13 src Don't actually rename any files. Useful with
38 b79428b4 2022-07-13 src .Fl v .
39 b79428b4 2022-07-13 src .It Fl o
40 b79428b4 2022-07-13 src Don't override existing files. Disables
41 b79428b4 2022-07-13 src .Fl i .
42 b79428b4 2022-07-13 src .It Fl v
43 b79428b4 2022-07-13 src Display the old and new names of each renamed file.
44 b79428b4 2022-07-13 src .El
45 b79428b4 2022-07-13 src .Sh EXIT STATUS
46 b79428b4 2022-07-13 src .Ex -std
47 b79428b4 2022-07-13 src .Sh SEE ALSO
48 b79428b4 2022-07-13 src .Xr mv 1 ,
49 b79428b4 2022-07-13 src .Xr rename 2
50 b79428b4 2022-07-13 src .Sh AUTHORS
51 b79428b4 2022-07-13 src .An Alexander Arkhipov Aq Mt src@mineeyes.cyou .