120件ヒット
[101-120件を表示]
(0.008秒)
トップページ >
:SystemCommand

![条件を削除 [x]](/images/drop-condition-icon.png)
別のキーワード
種類
- インスタンスメソッド (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 . new(sh , command , *opts) (3000.0) -
@todo
@todo
@param sh
@param command
@param opts -
Shell
# system(command , *opts) -> Shell :: SystemCommand (101.0) -
command を実行する.
command を実行する.
@param 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
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (101.0) -
command を実行する.
command を実行する.
@param 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 (101.0) -
command を実行する.
command を実行する.
@param 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