るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.047秒)
トップページ > クエリ:File.stat[x] > クエリ:gid[x] > クエリ:size%3F[x] > クエリ:symlink?[x] > 種類:ライブラリ[x]

別のキーワード

  1. _builtin size
  2. _builtin size?
  3. net/imap size
  4. rexml/document size
  5. _builtin gid

検索結果

find (37.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...