3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-17 01:19:31 +01:00
pbot/applets/pbot-vm
Pragmatic Software e5e0f26b90
applets/pbot-vm: minor fixes
* set `preserve_escapes` to 0 in guest/_c_base.pm so escapes are stripped in:

     <pragma-> ,show testcargs
     <candide> [global] testcargs: /code c11 printf("/say args: " ); while
               (*++argv) printf("[%s] " , *argv);
     <pragma-> ,testcargs foo\'bar baz\'qux
     <candide> args: [foo\'bar] [baz\'qux]

  to produce the desired output of:

     <candide> args: [foo'bar] [baz'qux]

* set `keep_spaces` to 1 in host/_default.pm since it turns out that in some
  languages unquoted spaces are significant, e.g. in `sh ${1%  *}` to strip
  text following two spaces. Without `keep_spaces` enabled, `sh ${1%  *}`
  becomes `sh ${1% *}` and strips all text following one space instead of two.
2024-10-30 15:43:38 -07:00
..
guest applets/pbot-vm: minor fixes 2024-10-30 15:43:38 -07:00
host applets/pbot-vm: minor fixes 2024-10-30 15:43:38 -07:00
vagrant pbot-vm: update documentation about how to start PBot VM after reboot 2024-04-10 13:09:58 -07:00
README.md pbot-vm: vm-exec can now select VM; can be configured by vm-exec.json file 2022-02-15 11:28:47 -08:00

PBot can interact with a virtual machine to safely execute arbitrary user-submitted system commands and code.

For installation and usage instructions, see the PBot Virtual Machine documentation.