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