红宝石清屏

时间:2012-04-21 17:31:51

标签: ruby terminal clear ruby-1.9

  

可能重复:
  How can I clear the terminal in Ruby?

如何清除ruby中的终端屏幕?

puts "hello, what's your name?"
input = gets.chomp
<<clearscreen>>
puts "nice to meet you, #{input}"

1 个答案:

答案 0 :(得分:12)

不确定您的具体要求,但在此帖子中有不同的方法可以清除irb / terminal:How Do You Clear The IRB Console?

有趣的是

为了清除屏幕,只需做一个

  

puts "\e[H\e[2J"