102件ヒット
[101-102件を表示]
(0.254秒)
種類
- インスタンスメソッド (66)
- 特異メソッド (36)
ライブラリ
- shell (36)
-
shell
/ command-processor (54) -
shell
/ filter (12)
クラス
- Shell (36)
-
Shell
:: CommandProcessor (54) -
Shell
:: Filter (12)
キーワード
-
alias
_ command (6) - cat (6)
- echo (6)
- glob (6)
- out (18)
- system (18)
- tee (6)
- transact (6)
-
unalias
_ command (6) -
undef
_ system _ command (12)
検索結果
-
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (106.0) -
command を実行する.
...nd を実行する.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.d......ef_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT...