-
Obsidian debug informationWin10 What shell are you using?CMD.EXE Please describe the problem |
Beta Was this translation helpful? Give feedback.
Answered by
Taitava
Jan 12, 2025
Replies: 1 comment
-
Hi, here are instructions on how to select an output channel for a shell command. You can select Clipboard as an output channel.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
craziedde
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
here are instructions on how to select an output channel for a shell command. You can select Clipboard as an output channel.
>&2
, meaning that the output is directed tostderr
(standard error). If you keep the command as is, you need to select Clipboard in Output channel for stderr.stdout
(standard output) by leaving out>&2
. If you decide to do this, then you need to select Clipboard in Output channel for stdout.