7
如何清除终端屏幕的红宝石?
puts "hello, what's your name?"
input = gets.chomp
<<clearscreen>>
puts "nice to meet you, #{input}"
如何清除终端屏幕的红宝石?
puts "hello, what's your name?"
input = gets.chomp
<<clearscreen>>
puts "nice to meet you, #{input}"
不知道你问究竟,但也有不同的方法来清除这个帖子IRB /终端:How Do You Clear The IRB Console?
一个是野趣是
为了清除屏幕只是做一个
puts "\e[H\e[2J"
我不确定那是跨平台的。 – 2012-04-21 17:50:58
这是转义序列。所有的终端都支持它。 – texasbruce 2012-04-21 18:39:08
在Win XP的DOS框中不起作用。 – knut 2012-04-21 21:20:57