Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Same command with issues locally

Output redirections is feature of cmd shell.

You can do the following to some both your problems:
cmd /c cd !\ & sha256sum --tag * > hash.txt
asnon

Same command with issues locally

Local is Windows
Remote is Linux

local custom command:
sha256sum --tag * > hash.txt

Two problems: this will not run in the current dir in the local pane, rather the WinSCP installation dir, and it will not pipe the output into a new file called hash.txt.

You can sort of fix the first issue with
sha256sum --tag "!\"\* > hash.txt

However no idea about the second issue.