sahib / rmlint

Extremely fast tool to remove duplicates and other lint from your filesystem
http://rmlint.rtfd.org
GNU General Public License v3.0
1.85k stars 128 forks source link

Support for specifying output path for generated files #669

Open rikrdo89 opened 3 weeks ago

rikrdo89 commented 3 weeks ago

I did not see in the docs that there is a way to specify the output path where to save the different generated files (rmlint.sh, rmlint.json, etc) ? Currently when running rmlint, those files are save in the current path.

MAProsper commented 2 weeks ago

If you don't specify any output, it defaults to this:

-o sh:rmlint.sh -o pretty:stdout -o summary:stdout -o json:rmlint.json

If you only want the sh script and in a different path, you can specify:

-o sh:/path/for/the/script

For more information check the -o / --output option in the manual.

Note: I'm just a user, not a contributor or maintainer.