Greetings, Derek Pagel!

> The icalcs command doesn’t work on either and I haven’t been able to get it 
> to work elsewhere either.

> D:\lsenv\law\lsapps\edi\work>icacls "`cygpath -m interchange.20230418091901"
> `cygpath -m interchange.20230418091901: The system cannot find the file 
> specified.
> Successfully processed 0 files; Failed processing 1 files

Stop using ` already. Or at the very least use it properly.
Either

icacls `cygpath -m interchange.20230418091901`

or

icacls "$(cygpath -m interchange.20230418091901)"

> D:\lsenv\law\lsapps\edi\work>icacls "`cygpath -m 
> interchange.20230418091901.tmp"
> `cygpath -m interchange.20230418091901.tmp: The system cannot find the file 
> specified.
> Successfully processed 0 files; Failed processing 1 files

Not to mention, you don't need to cygpath the file in current directory.
Just

icacls "interchange.20230418091901.tmp"

should suffice.


-- 
With best regards,
Andrey Repin
Thursday, April 20, 2023 10:31:55

Sorry for my terrible english...

-- 
Problem reports:      https://cygwin.com/problems.html
FAQ:                  https://cygwin.com/faq/
Documentation:        https://cygwin.com/docs.html
Unsubscribe info:     https://cygwin.com/ml/#unsubscribe-simple

Reply via email to