Open UserC2 opened 4 months ago
Using any command requiring a pattern doesn't function on Windows.
fclones executes correctly, but finds 0 applicable duplicates with the following command in PowerShell:
fclones
fclones group . | fclones move --path '.\' --dry-run 'Duplicates' > moves.txt
(It also doesn't work with any combination of './', .\, ./, ./*, or .\* as an argument to --path.)
'./'
.\
./
./*
.\*
--path
Fclones has no control over how the shell preprocesses the arguments. Quoting rules differ between shells so you have to adapt your args so that fclones receives proper argument values.
Does it work in cmd?
Using any command requiring a pattern doesn't function on Windows.
fclones
executes correctly, but finds 0 applicable duplicates with the following command in PowerShell:(It also doesn't work with any combination of
'./'
,.\
,./
,./*
, or.\*
as an argument to--path
.)