blob: ffb681f8c25050c9341803626000bf6dc5cb3e32 (
plain)
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
|
#+TITLE: unixize
*unixize* is a very small tool to bulk rename files into a cool UNIX-friendly
standard. Basically, everything becomes lowercase and there is no need to
escape characters anymore when entering your filenames in a terminal. It
also removes unicode characters.
*unixize* is configurable through options. Refer to
#+BEGIN_SRC shell
man unixize
#+END_SRC
to get a list of options.
* Dependencies
- a C compiler
- GNU Make
* Installation
You can get *unixize* either through ~git~ or ~fossil~.
For ~fossil~ use:
#+BEGIN_SRC shell
$ mkdir unixize
$ cd unixize
$ fossil clone https://chiselapp.com/user/JozanLeClerc/repository/unixize unixize.fossil
$ fossil open --force unixize.fossil
#+END_SRC
or for ~git~:
#+BEGIN_SRC shell
$ git clone git://jozanleclerc.xyz/jozan/unixize.git
$ cd unixize
#+END_SRC
Then build the program:
#+BEGIN_SRC shell
$ make
# make install clean
#+END_SRC
* End note
Please note that unixize was tested only on FreeBSD at the moment.
Linux and macOS tests are coming soon. You can report bug on
[[GitHub][https://github.com/JozanLeClerc/unixize.git]].
|