From 8e1261310853890ac55fac4b783c0ee1b08a6e31 Mon Sep 17 00:00:00 2001 From: pierwill Date: Thu, 5 Dec 2019 22:27:36 -0800 Subject: [PATCH] Edit wording of qrexec-client example --- developer/services/qrexec.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/developer/services/qrexec.md b/developer/services/qrexec.md index 737f195f..ee4f1205 100644 --- a/developer/services/qrexec.md +++ b/developer/services/qrexec.md @@ -42,14 +42,12 @@ Once this channel is established, stdin/stdout/stderr from the VMprocess is pass ![qrexec basics diagram](/attachment/wiki/qrexec3/qrexec3-basics.png) The `qrexec-client` command is used to make connections to VMs from dom0. -For example, the following command +For example, the following command creates an empty file called `hello-world.txt` in the home folder of `someVM`: ``` $ qrexec-client -e -d someVM user:'touch hello-world.txt' ``` -creates an empty file called `hello-world.txt` in the home folder of `someVM`. - The string before the colon specifies what user to run the command as. The `-e` flag tells `qrexec-client` to exit immediately after sending the execution request and receiving a status code from `qrexec-agent` (whether the process creation succeeded). With this option, no further data is passed between the domains.