Organize files based on regex rules, file extensions by default.
Install it by running
bash
$ cargo install organize-rt
It will download & compile binary to ~/.cargo/bin. Add this directory to your path or copy binary to /usr/bin/
Just clone this repo and build this project:
bash
$ git clone --depth=1 https://gitlab.com/FixFromDarkness/organize-rt.git
$ cd organize-rt
$ cargo build --release
After compiling, you can use binary ./target/release/organize-rt
. For example, you could copy it to /usr/bin.
Download binaries from GitLab release section.
Clone repo and use makepkg:
bash
$ git clone --depth=1 https://gitlab.com/FixFromDarkness/organize-rt.git
$ makepkg -sri
Available in COPR:
sudo dnf copr enable atim/organize-rt -y
sudo dnf install organize-rt
``` $ organize-rt --help organize-rt 1.0.0 Tool for organizing files in garbage dirs like 'Downloads'
USAGE: organize-rt [FLAGS] [OPTIONS] --output
FLAGS: --dry-run Prints where the file would move, but does not move -h, --help Prints help information -H, --hidden Include hidden files/directories -q, --quiet Quiet run, empty output -r, --recursive -u, --undo Undo action (require log) -V, --version Prints version information -v, --verbose Show more info
OPTIONS:
--log
Recommended mode: organize-rt -rH
If you have several file with the same name, program will save them like file
, file.COPY<id>
, file.COPY<id>
..., where id
isn't a copy number, but a unique number. Also, program will skip all file errors like Bad permissions
and print about them (if --quiet flag isn't specified).
When you run this program, after all moves it will save its actions in log (--log option, default "./organize-rt.log").
If you want to discard changes, run with --undo option. For example organize-rt --undo --log ./badrun.log
will discard changes, saved in
badrun.log. Some important notes about undo:
* It use absolute paths, so you can run it from anywhere.
* Due to absolute paths, you can't undid changes if output dir was moved
* It will skip errors (deleted files from output dir)
* You can delete source directory, undo mode will restore it
Normal mode:
$ organize-rt -s in -o out -rH --dry-run
in/avi.avi -> out/Video/avi.avi
in/compressed.tar.bz2 -> out/Compressed/compressed.tar.bz2
in/ogg.ogg -> out/Audio/ogg.ogg
in/conf.conf -> out/Configuration/conf.conf
in/archlinux.iso -> out/ISO/archlinux.iso
in/compressed.tar.gz -> out/Compressed/compressed.tar.gz
in/dir/document.docx -> out/Documents/document.docx
in/dir/image.png -> out/Images/image.png
in/unsorted.norule -> out/Unsorted/unsorted.norule
in/.hidden.conf -> out/Configuration/.hidden.conf
in/mp3.mp3 -> out/Audio/mp3.mp3
Undo this action (# hide absolute path): ``` $ organize-rt --undo --dry-run
```
Just edit ~/.config/organize-rt/organize-rt.toml. This file will appear after the first run, you can also use organize-rt.toml.default from this repository. File structure: ```toml rules = [
[
'REGEX',
'OUTPUT_SUBDIR',
]
] ``` With this rule, file, that match REGEX rule, but didn't match previous rules will move to OUTPUTDIR/OUTPUTSUBDIR, where OUTPUT_DIR is --output option.
Star this repo, please.
Waiting for your pull request or issue