I've been reading the documentation, but I don't get
The documentation seems a bit off as well. It says:
Hmm, so where is the command supposed to go? How does escaping|piping work? There are no examples whatsoever in the entire documentation.
All of the following commands I ran do not work:
In fact, I haven't been able to run any
pct exec
to work.The documentation seems a bit off as well. It says:
pct exec
<vmid> [<extra-args>] [OPTIONS]
Hmm, so where is the command supposed to go? How does escaping|piping work? There are no examples whatsoever in the entire documentation.
All of the following commands I ran do not work:
Code:
pct exec 803 uname -a >t
pct exec 803 "uname -a >t"
pct exec 803 'uname -a >t'
pct exec 803 "echo 'test' |cat >/tmp/t"
pct exec 803 'echo "test" |cat >/tmp/t'
In fact, I haven't been able to run any
pct exec
command. So how does it work?