Jody Bruchon (MOVED TO JODYBRUCHON.COM)

Results 192 comments of Jody Bruchon (MOVED TO JODYBRUCHON.COM)

FYI I did find out what the problem is. Same as when you reported the other overflow. There's recursion in the code that frees the `travdone` data. I'm working on...

@e-gaulue Please test with current Git master and let me know if you still have issues.

I'm thinking that what we need is a generic "the next parameter is read-only" option. Combined with the isolation option, it would allow for what you're requesting.

If you use `-I` (don't allow intra-parameter matching) and `-O` (always sort using parameter order) and put the folder that shouldn't be modified earlier in the command line, it should...

There are problems with the isolated option that are not easily fixed. I took a pull request that claimed to fix it, but if you're missing items, that pull doesn't...

Isolation is supposed to prevent any matching between items within the same command-line parameter. If you type `jdupes -Ir 1 2 3` then any duplicate pairs within 1 or 2...

That is correct. The sort is alphabetical across the full path. I think that the best way to handle this right now is to write a shell script which consumes...

The easiest alpha sort is a case-sensitive dumb one. That is an extremely simple matter of checking each character pair's ASCII values and sorting based on that mathematical comparison. jdupes...

I've been considering adding `-X` extfilters that let you set up criteria and make matches or non-matches "no-modify" so that no destructive operations are allowed on any items that are...