We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/modernjuliaworkflows/modernjuliaworkflows.github.io/blob/main/pages/writing/writing.md#shell-mode-
By pressing ; you enter a terminal, where you can execute any bash command you want.
On Windows echo "hello" returns
echo "hello"
ERROR: IOError: could not spawn `echo hello`: no such file or directory (ENOENT)
Possibilities include cmd /c echo "hello" or powershell echo "hello".
cmd /c echo "hello"
powershell echo "hello"
Endless discussion here JuliaLang/julia#23703 and in the linked issues and PRs.
The text was updated successfully, but these errors were encountered:
Thanks, I didn't know that! For a cross-platform example, does ls work?
ls
Sorry, something went wrong.
ls does not work either, because (IIUC) there is no shell associated in the shell mode in Windows. So shell mode can only launch binaries.
;powershell ls, ;powershell dir, ;cmd /c dir works. ;cmd /c ls does not.
;powershell ls
;powershell dir
;cmd /c dir
;cmd /c ls
Ok, i added a comment specifying that the shell example works on Unix only
No branches or pull requests
https://github.com/modernjuliaworkflows/modernjuliaworkflows.github.io/blob/main/pages/writing/writing.md#shell-mode-
On Windows
echo "hello"
returnsPossibilities include
cmd /c echo "hello"
orpowershell echo "hello"
.Endless discussion here JuliaLang/julia#23703 and in the linked issues and PRs.
The text was updated successfully, but these errors were encountered: