--- /dev/null
+# mv_none_space
+
+Is a tool it renames files without spaces and translate umlauts into normal
+characters.
+
+## Build
+
+You can build with following commands:
+
+```bash
+mkdir build && cd build
+cmake -DCMAKE_BUILD_TYPE=Release ..
+make
+```
+
+or build a dep package with command:
+
+```bash
+make package
+```
+
+## Usage
+
+Only rename spaces and umlauts:
+
+```bash
+mv_none_space /path/to/rename
+```
+
+Rename spaces, umlauts and make lower case:
+
+```bash
+mv_none_space /path/to/rename lower
+```
+
+Rename spaces, umlauts and no dots at the end
+
+```bash
+mv_none_space /path/to/rename point
+```
\ No newline at end of file