Rubyはパイプを作って、コマンドの標準入力になにか書き込むことが出来る
atコマンドになにか書き込む例。
IO.popen("at -q r '#{(Time.now+60).strftime("%H:%M %d.%m.%Y")}'","w"){|io| io.puts "#/bin/sh /etc/init.d/apache reload " ;}
Rubyはパイプを作って、コマンドの標準入力になにか書き込むことが出来る
IO.popen("at -q r '#{(Time.now+60).strftime("%H:%M %d.%m.%Y")}'","w"){|io| io.puts "#/bin/sh /etc/init.d/apache reload " ;}