aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjozan <jozan@noemail.net>2020-11-28 00:33:03 +0000
committerjozan <jozan@noemail.net>2020-11-28 00:33:03 +0000
commita8ad6fa532e8a9a4bb6c99dad3d4590f306a1548 (patch)
treea2b188f5e420a8a6db393c746283d7781c34c219
parentAdded plain text README (diff)
downloadunixize-a8ad6fa532e8a9a4bb6c99dad3d4590f306a1548.tar.gz
unixize-a8ad6fa532e8a9a4bb6c99dad3d4590f306a1548.tar.bz2
unixize-a8ad6fa532e8a9a4bb6c99dad3d4590f306a1548.tar.xz
unixize-a8ad6fa532e8a9a4bb6c99dad3d4590f306a1548.tar.zst
unixize-a8ad6fa532e8a9a4bb6c99dad3d4590f306a1548.zip
README update
FossilOrigin-Name: dd86fdddcfa87ec3d752b4b50ea99d34c77e44697309b04ea250c8263900a70e
-rw-r--r--README30
-rw-r--r--README.md29
-rw-r--r--README.org29
3 files changed, 84 insertions, 4 deletions
diff --git a/README b/README
index 6a64eb4..99813fa 100644
--- a/README
+++ b/README
@@ -48,13 +48,39 @@ manually.
Example of usage:
$ cd messy_directory
- $ unixize -v -r .
+ $ unixize -R .
+ $ tree
+ .
+ ├── Sub directory
+ │ ├── 01. IMG.JPG
+ │ ├── archive.tar.xz
+ │ └── zxc*:()ASD.qWe
+ ├── a file
+ ├── Bad-file.mkv
+ ├── good_file
+ ├── README
+ └── ‡‡‡‡song‡‡‡‡.mp3
+ $ unixize -R .
+ $ tree
+ .
+ ├── sub_directory
+ │ ├── 01_img.jpg
+ │ ├── archive.tar.xz
+ │ └── zxcasd.qwe
+ ├── a_file
+ ├── bad_file.mkv
+ ├── good_file
+ ├── readme
+ └── song.mp3
End note
--------
+Despite being single-threaded, unixize performs well. Used on my whole music
+directory (14943 files and directories) on FreeBSD with UFS, the operation
+took less than one second.
+
Please note that unixize was tested only on FreeBSD at the moment.
Linux and macOS tests are coming soon. You can report bug on
[[https://github.com/JozanLeClerc/unixize.git][GitHub]].
Thanks for checking *unixize*.
-
diff --git a/README.md b/README.md
index bcb5b86..30d588d 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,30 @@ manually.
Example of usage:
```sh
cd messy_directory
-unixize -v -r .
+unixize -R .
+tree
+ .
+ ├── Sub directory
+ │ ├── 01. IMG.JPG
+ │ ├── archive.tar.xz
+ │ └── zxc*:()ASD.qWe
+ ├── a file
+ ├── Bad-file.mkv
+ ├── good_file
+ ├── README
+ └── ‡‡‡‡song‡‡‡‡.mp3
+unixize -R .
+tree
+ .
+ ├── sub_directory
+ │ ├── 01_img.jpg
+ │ ├── archive.tar.xz
+ │ └── zxcasd.qwe
+ ├── a_file
+ ├── bad_file.mkv
+ ├── good_file
+ ├── readme
+ └── song.mp3
```
@@ -87,6 +110,10 @@ unixize -v -r .
# End note
+Despite being single-threaded, **unixize** performs well. Used on my whole music
+directory (14943 files and directories) on FreeBSD with UFS, the operation
+took less than one second.
+
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).
diff --git a/README.org b/README.org
index 2ee7c11..5d88a88 100644
--- a/README.org
+++ b/README.org
@@ -52,10 +52,37 @@ manually.
Example of usage:
#+BEGIN_SRC shell
cd messy_directory
-unixize -v -r .
+unixize -R .
+tree
+ .
+ ├── Sub directory
+ │ ├── 01. IMG.JPG
+ │ ├── archive.tar.xz
+ │ └── zxc*:()ASD.qWe
+ ├── a file
+ ├── Bad-file.mkv
+ ├── good_file
+ ├── README
+ └── ‡‡‡‡song‡‡‡‡.mp3
+unixize -R .
+tree
+ .
+ ├── sub_directory
+ │ ├── 01_img.jpg
+ │ ├── archive.tar.xz
+ │ └── zxcasd.qwe
+ ├── a_file
+ ├── bad_file.mkv
+ ├── good_file
+ ├── readme
+ └── song.mp3
#+END_SRC
* End note
+Despite being single-threaded, *unixize* performs well. Used on my whole music
+directory (14943 files and directories) on FreeBSD with UFS, the operation
+took less than one second.
+
Please note that unixize was tested only on FreeBSD at the moment.
Linux and macOS tests are coming soon. You can report bug on
[[https://github.com/JozanLeClerc/unixize.git][GitHub]].