Executing commands

We saw in the first chapter that it is possible to shell out of the console REPL to the operating system by using the ; command. In addition, Julia provides a number of built-in functions so that scripts can interactive with the OS and its filesystem. Most of these commands mirror the standard Unix commands. For Windows users, they will be familiar to those who have used the MINGW or similar shells.

Two familiar ones are pwd() and cd():

julia> pwd();
"/Users/malcolm/Packt/Chapter-4"
julia> cd("../../Work");
julia> pwd();
"/Users/malcolm/Work"

The pwd() command indicates where we are now (print working folder), and of course, cd() is used to change the folder. This can be relative to the current location or an absolute if the ...

Get Mastering Julia now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.