Method: Unix::Exec#touch

Defined in:
lib/beaker/host/unix/exec.rb

#touch(file, abs = true) ⇒ Object



119
120
121
# File 'lib/beaker/host/unix/exec.rb', line 119

def touch(file, abs = true)
  (abs ? '/bin/touch' : 'touch') + " #{file}"
end