PageRenderTime 68ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/bundles/plugins-trunk/Console/console/bsh/runInSystemShell.bsh

#
Unknown | 8 lines | 7 code | 1 blank | 0 comment | 0 complexity | b71dfca29972717b9e5fbc48107721ac MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /* Runs a command in the system shell. */
  2. runInSystemShell(View view, String command)
  3. {
  4. runCommandInConsole(view,"System",command);
  5. }
  6. help.runInSystemShell
  7. = "usage: runInSystemShell(View view, String shell, String command)";