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.91k stars 132 forks source link

load json from previous run into GUI #426

Closed honelnik closed 4 years ago

honelnik commented 4 years ago

Hello,

first of all thanks so much, rmlint is amazing.

Is there a way to load json from my previous scan into the GUI? My scan ran for around 90min, so I was wondering if I can have GUI not have to spawn another rmlint and just use the data already available.

Thank you

sahib commented 4 years ago

Hello @honelnik,

this is currently not possible with the GUI.

You can run the command line to replay your .json file:

$ rmlint --replay rmlint.json /the/directory/you/ran

This will create a .sh file you can run directly:

./rmlint.sh

See also the documentation: https://rmlint.readthedocs.io/en/latest/tutorial.html#replaying-results

honelnik commented 4 years ago

Hi @sahib

THank you