36件ヒット
[1-36件を表示]
(0.017秒)
別のキーワード
キーワード
- find (12)
-
rdoc
/ stats (12) -
webrick
/ httpstatus (12)
検索結果
-
rdoc
/ stats (6001.0) -
RDoc のステータスを管理するサブライブラリです。
RDoc のステータスを管理するサブライブラリです。 -
webrick
/ httpstatus (6001.0) -
HTTP のステータスを表す例外クラスを提供します。
HTTP のステータスを表す例外クラスを提供します。 -
find (7.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...