- 浏览: 24870 次
- 性别:
- 来自: 南京
最新评论
-
fireflyman:
把它用框起來吧,那樣耐看點....另外,為啥不翻譯一下呢?
rake子命令列表
文章列表
windows下:
pause命令
C:\Documents and Settings\leeyouser>pause /?
暂停批处理程序,并显示以下消息:
请按任意键继续. . .
如果不想输出“请按任意键继续. . .”,而是显示自己想要的输出信息可以这样:
echo your output message
pause>nul
set命令
set /p input="Please press any key to continue..."
linux下:
没有系统自带的pause命令,可以用以下代码实现:
#!/bin/bas ...
@server = TCPServer.open(@host, @port)
rescue Exception => e
@log.fatal("SSH protocol start ... failed. (#{e.to_s})")
raise "SSHServer start failed."
end
@log.info("SSH protocol start ... ok\n")
@protocol_started = true
while @server
...
- 2009-10-09 15:04
- 浏览 1439
- 评论(0)
class A
def bcd
puts "bcd"
end
end
ta = A.new
ta.bcd
class A
def cdf
puts "cdf"
end
end
a = A.new
a.cdf
a.bcd
ta.cdf
重新定义只会增加原来类的内容,并不会覆盖。
- 2009-10-08 16:28
- 浏览 649
- 评论(0)
require 'ftools'
File.copy('a.txt', 'a.txt.bak')
File.move
File.delete
- 2009-08-25 15:14
- 浏览 940
- 评论(0)