Method: Glyph::Utils#run_external_command
- Defined in:
- lib/glyph/utils.rb
permalink #run_external_command(cmd) ⇒ Object
Execute an external command
174 175 176 177 178 179 180 181 |
# File 'lib/glyph/utils.rb', line 174 def run_external_command(cmd) IO.popen(cmd+" 2>&1") do |pipe| pipe.sync = true while str = pipe.gets do puts str end end end |