最速Rubyリファレンスマニュアル検索!
すべて(6)
2.1.0(1)
2.2.0(1)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
6件ヒット
[1-6件を表示]
(0.120秒)
トップページ
>
:
インスタンスメソッド
>
:
string
>
:
command
>
:to_s
別のキーワード
shell/builtin-command new
rubygems/command command
irb/extend-command def_extend_command
irb/extend-command install_extend_commands
shell/builtin-command each
ライブラリ
shell
/
filter
(6)
クラス
Shell
::
Filter
(6)
検索結果
先頭1件
Shell
::
Filter
#
to
_
s -> String
Shell
::
Filter
#
to
_
s -> String
(18215.0)
2.1.0
2.2.0
2.3.0
2.4.0
2.5.0
2.6.0
インスタンスメソッド
実行結果を文字列で返します。
...
実行結果を文字列で返します。
require 'shell'
Shell.def_system_
command
("wc")
sh = Shell.new
sh.transact {
puts (cat("/etc/passwd") | wc("-l")).
to_s
}
...
Shell::Filter