- Jul
- 325
- 4
I've seen this topic before but not sure if its a bug or you have to add "" to cover these types of files.
Eg Should say
for %in in (*.dll) do echo %in %@SHA1[%in]
work for all files or do you have to use
for %in in (*.dll) do echo %in %@SHA1["%in"]
to catch files with spaces. At the moment you have to use the latter otherwise you get a -1 value.
Eg Should say
for %in in (*.dll) do echo %in %@SHA1[%in]
work for all files or do you have to use
for %in in (*.dll) do echo %in %@SHA1["%in"]
to catch files with spaces. At the moment you have to use the latter otherwise you get a -1 value.