るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.251秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:l[x] > バージョン:2.5.0[x] > クエリ:e[x] > クエリ:record_separator[x]

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix determinant_e
  5. matrix rank_e

ライブラリ

クラス

キーワード

検索結果

Shell#record_separator -> String (81607.0)

@todo

@todo

Shell#record_separator=(rs) (45607.0)

@todo

@todo

Shell::Filter#each(rs = nil) -> () (27622.0)

フィルタの一行ずつをblockに渡します。

フィルタの一行ずつをblockに渡します。

@param rs レコードセパレーターを表す文字列を指定します。
nil ならば、Shell.record_separatorの値が使用されます。

使用例
require 'shell'
sh = Shell.new
sh.cat("/etc/passwd").each { |line|
puts line
}