Shell out via system call.
Parameters:
Argument vector. [Array]
Returns:
success of shell invocation.
14 15 16 17
# File 'lib/fire/shellutils.rb', line 14 def sh(*args) puts args.join(' ') system(*args) end