class Command

Public Class Methods

new(cmd) click to toggle source
# File lib/tikici.rb, line 136
def initialize(cmd)
  @cmd = cmd
end

Public Instance Methods

exec() click to toggle source
# File lib/tikici.rb, line 140
def exec
  Kernel.system(@cmd) or abort
end