Method: Fire::ShellUtils#sh

Defined in:
lib/fire/shellutils.rb

#sh(*args) ⇒ Object

Shell out via system call.

Parameters:

  • args

    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