Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Julia 1.0 Programming

You're reading from   Julia 1.0 Programming Dynamic and high-performance programming to build fast scientific applications

Arrow left icon
Product type Paperback
Published in Sep 2018
Publisher
ISBN-13 9781788999090
Length 196 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Ivo Balbaert Ivo Balbaert
Author Profile Icon Ivo Balbaert
Ivo Balbaert
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Installing the Julia Platform FREE CHAPTER 2. Variables, Types, and Operations 3. Functions 4. Control Flow 5. Collection Types 6. More on Types, Methods, and Modules 7. Metaprogramming in Julia 8. I/O, Networking, and Parallel Computing 9. Running External Programs 10. The Standard Library and Packages 11. Other Books You May Enjoy

Running shell commands


To interact with the operating system from within the Julia REPL, there are a few helper functions available, as follows:

  • pwd(): this function prints the current directory, for example, "d:\\test"
  • cd("d:\\test\\week1"): this function helps to navigate to subdirectories
  • ;: in the interactive shell, you can also use shell mode using the ; modifier, for example: ; cd folder: navigates to folder

However, what if you want to run a shell command by using the operating system (the OS)? Julia offers efficient shell integration through the run function, which takes an object of type Cmd, defined by enclosing a command string in backticks (``).

 

 

The following are some examples for Linux or macOS X (at the time of writing: September 2018):

# Code in Chapter 9\shell.jl: 
cmd = `echo Julia is smart` 
   typeof(cmd) #> Cmd  
   run(cmd) # returns Julia is smart
   run(`date`) #> Sat Jul 14 09:44:50 GMT 2018 
   cmd = `cat file1.txt` 
   run(cmd) # prints the contents of file1.txt...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime