浏览 3620 次
精华帖 (0) :: 良好帖 (2) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-10-13
1 windows的bat解析器跳过ruby代码。 2 ruby解析器跳过bat代码 那么bat脚本的样子应该是这样子: "ruby" -x "%~f0" %* goto endofruby #!/bin/ruby #ruby -x will skip text before !ruby p "sdf" __END__ :endofruby 附赠一个时间同步的例子:sync_time.bat @echo off "ruby" -x "%~f0" %* goto endofruby #!/bin/ruby #ruby -x will skip text before !ruby def sync_time time=get_time_bjtime() end def get_time_bjtime require 'open-uri' p 'geting from bjtime...' time_string=open('http://bjtime.cn/header3.asp').string.gsub(/\r|\n| /,"") time_string=~/nyear=(\d+).*nmonth=(\d+).*nday=(\d+).*nhrs=(\d+).*nmin=(\d+).*nsec=(\d+).*/ y,mon,d,h,min,s=$1,$2,$3,$4,$5,$6 p time_string p "got #{y}-#{mon}-#{d} #{h}:#{min}:#{s}" system("date #{y}-#{mon}-#{d}") system("time #{h}:#{min}:#{s}") end if __FILE__ == $0 sync_time end __END__ :endofruby 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-10-13
http://snippets.dzone.com/posts/show/6146
gem install ntp include NET r = NTP.get_ntp_response() puts r.inspect |
|
返回顶楼 | |
发表时间:2008-10-13
太麻烦了,看我一条命令就搞定了:
ntpdate time.nuri.net |
|
返回顶楼 | |
发表时间:2008-10-13
我标题本末倒置了。
得,改标题了。 |
|
返回顶楼 | |
发表时间:2008-10-13
robbin 写道 太麻烦了,看我一条命令就搞定了:
ntpdate time.nuri.net 老大,貌似LZ是W系的 |
|
返回顶楼 | |
发表时间:2008-10-13
goncha 写道 robbin 写道 太麻烦了,看我一条命令就搞定了:
ntpdate time.nuri.net 老大,貌似LZ是W系的 装个cygwin嘛。 |
|
返回顶楼 | |
发表时间:2008-11-06
这个跳来跳去的功能有什么用呢?
|
|
返回顶楼 | |
发表时间:2008-11-23
最后修改:2008-11-23
在bat中写ruby代码?
如果在*nix上就可以直接用 here doc #!/bin/sh ruby << EOF puts 'Some Ruby Code here' EOF 在win*上一般是间接生成文件 @echo off echo put "Some Ruby Code here" > aaa.rb ruby aaa.rb del aaa.rb 碰到管道操作符 | > < 记得要 ^ 转义 显得很麻烦 |
|
返回顶楼 | |