るりまサーチ

最速Rubyリファレンスマニュアル検索!
6件ヒット [1-6件を表示] (0.011秒)
トップページ > ライブラリ:shell[x] > クエリ:systemcommand[x] > クラス:Shell::CommandProcessor[x]

別のキーワード

  1. systemcommand notify
  2. systemcommand new
  3. systemcommand name
  4. systemcommand each
  5. systemcommand kill

検索結果

Shell::CommandProcessor#system(command, *opts) -> Shell::SystemCommand (103.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...