るりまサーチ

最速Rubyリファレンスマニュアル検索!
30件ヒット [1-30件を表示] (0.007秒)
トップページ > クエリ:pipe[x] > 種類:ライブラリ[x]

別のキーワード

  1. io pipe
  2. _builtin pipe
  3. _builtin pipe?
  4. pathname pipe?
  5. etc pc_pipe_buf

キーワード

検索結果

rdoc (13.0)

RDoc は Ruby のドキュメント生成を行うためのライブラリです。rdoc という ドキュメント生成のためのコマンドも含んでいます。

...トは "doc" です)。

: --opname name

出力の名前をnameにします(HTML を出力する場合には何の効果もありません)

: --pipe, -p

標準入力を読み込んで HTML に変換し、標準出力に出力します。ファイルへ
の出力は行わないため、--op...
...作と干渉するため、保存する事ができません。

* --coverage-report
* --dry-run
* --encoding
* --force-update
* --format
* --pipe
* --quiet
* --template
* --verbose

===[a:markup] Markup

コメント部はかなり自然に書くことができます。'#' で始まるコ...

rubygems/commands/dependency_command (13.0)

インストールされている Gem パッケージの依存関係を表示するためのライブラリです。

...存関係を表示します
-R, --[no-]reverse-dependencies この Gem を使用している Gem を表示します
-p, --pipe Pipe Format (name --version ver)
Local/Remote Options:
-l, --local 操作をローカルに限定します...

shell (7.0)

Ruby 上で sh/csh のようにコマンドの実行及びフィルタリングを手軽に行うためのライブラリです。

...f = open("tmpFile", "w")
f.print "TEST\n"
f.close
end
print pwd
end
end
end

==== Example 3: Using Pipe

require 'shell'
sh = Shell.new
sh.cat("/etc/printcap") | sh.tee("tee1") > "tee2"
(sh.cat < "/etc/printcap") | sh.tee("tee11") > "tee12"...