class LSL::ExecutionStrategy::Shell

Public Instance Methods

call(cmd) click to toggle source
# File lib/lsl.rb, line 45
def call(cmd)
  str = "#{cmd.ex} " + cmd.args.join(" ")
  `#{str}`
end