120件ヒット
[101-120件を表示]
(0.019秒)
別のキーワード
種類
- インスタンスメソッド (108)
- 特異メソッド (6)
- クラス (6)
ライブラリ
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
shell
/ system-command (102)
クラス
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Shell
:: SystemCommand (96)
検索結果
先頭4件
-
Shell
:: SystemCommand # wait? -> bool (6000.0) -
@todo
@todo -
Shell
:: SystemCommand . new(sh , command , *opts) (6000.0) -
@todo
@todo
@param sh
@param command
@param opts -
Shell
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (3226.0) -
command を実行する.
...で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (3226.0) -
command を実行する.
...で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT...