るりまサーチ

最速Rubyリファレンスマニュアル検索!
9121件ヒット [9101-9121件を表示] (0.059秒)

別のキーワード

  1. _builtin stat
  2. gc stat
  3. csv stat
  4. pathname stat
  5. io stat

キーワード

検索結果

<< < ... 90 91 92 >>

Net::POP3#set_debug_output(f) -> () (6.0)

デバッグ用の出力 f をセットします。

...ytes
}

実行結果:

POP session started: pop.example.com:110 (POP)
-> "+OK popd <1162042773.26346.155555a1861c@pop.example.com>\r\n"
<- "APOP YourAccount XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\r\n"
-> "+OK\r\n"
<- "STAT\r\n"
-> "+OK 37 339936\r\n"
339936
<- "QUIT\r\n"
-> "+OK\r\n"...

find (6.0)

ディレクトリ配下のファイルを探索するためのモジュールです。

...人が書き込み可能な危険なコマンドを探す

for dir in ENV['PATH'].split(File::PATH_SEPARATOR)
Find.find(dir) do |fpath|
if File.file?(fpath) and (File.stat(fpath).mode & 022) != 0
printf("file %s is writable from other users\n", fpath)
end
end
end...
<< < ... 90 91 92 >>