diff options
author | jozan <jozan@noemail.net> | 2020-11-27 23:14:46 +0000 |
---|---|---|
committer | jozan <jozan@noemail.net> | 2020-11-27 23:14:46 +0000 |
commit | f6c8c659ad2932e607868cc098d6ce022954f768 (patch) | |
tree | 1cd52d018632cdf1b9ccdc1ba101d4ded124ba18 | |
parent | Retest (diff) | |
download | unixize-f6c8c659ad2932e607868cc098d6ce022954f768.tar.gz unixize-f6c8c659ad2932e607868cc098d6ce022954f768.tar.bz2 unixize-f6c8c659ad2932e607868cc098d6ce022954f768.tar.xz unixize-f6c8c659ad2932e607868cc098d6ce022954f768.tar.zst unixize-f6c8c659ad2932e607868cc098d6ce022954f768.zip |
README in progress
FossilOrigin-Name: 0ed7abc6f09ee3d6f18d87c8abdbf7cc916c91f62cb210bd711614d0e502040a
-rw-r--r-- | README.org | 36 |
1 files changed, 35 insertions, 1 deletions
@@ -1,3 +1,37 @@ #+TITLE: unixize -Simple test. +*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 |