Created
October 17, 2013 13:12
-
-
Save jbonney/7024637 to your computer and use it in GitHub Desktop.
Execution of shell (bash) code in Ruby scripts. http://makandracards.com/makandra/1243-execution-of-shell-code-in-ruby-scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1: %x{ } – quick and easy | |
name = 'ls' | |
result = `which #{name}` # or result = %x{which #{name}} | |
#2: system – when you want to know how it went | |
result = system 'cp', '/full/path/to/my_file', '/target/directory' | |
if result.nil? | |
puts "Error was #{$?}" | |
elsif result | |
puts "You made it!" | |
end | |
#3: exec – the last thing you do | |
puts "Creating directory..." | |
exec 'mkdir', 'new_directory' | |
# the code here and below will never be read | |
#4: spawn – gives you a good level of control | |
spawn(:name => 'development', 'echo hello world') | |
#5: open3 – for those who want to control everything |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment