如何从 Julia REPL 执行 运行 shell 命令?
How to run shell commands from the Julia REPL?
在 Julia REPL 中,我想 运行 一些终端命令,但不一定要通过管道或其他环绕系统调用的语法来执行这些命令。 运行 REPL 中的终端命令有更原生的方式吗?
Julia 的 REPL 具有所谓的 Shell 模式。您可以通过在终端中输入 ;
来访问 Shell 模式,这将导致:
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.6.0 (2021-03-24)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
shell>
然后您可以 运行 命令,例如:
shell> pwd
/Users/my_username
shell>
在此处阅读有关 Shell 模式的更多信息:https://docs.julialang.org/en/v1/stdlib/REPL/#man-shell-mode
在 Julia REPL 中,我想 运行 一些终端命令,但不一定要通过管道或其他环绕系统调用的语法来执行这些命令。 运行 REPL 中的终端命令有更原生的方式吗?
Julia 的 REPL 具有所谓的 Shell 模式。您可以通过在终端中输入 ;
来访问 Shell 模式,这将导致:
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.6.0 (2021-03-24)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
shell>
然后您可以 运行 命令,例如:
shell> pwd
/Users/my_username
shell>
在此处阅读有关 Shell 模式的更多信息:https://docs.julialang.org/en/v1/stdlib/REPL/#man-shell-mode