るりまサーチ

最速Rubyリファレンスマニュアル検索!
18件ヒット [1-18件を表示] (0.134秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. pop n_bytes
  5. openssl n

検索結果

Shell::CommandProcessor#system(command, *opts) -> Shell::SystemCommand (6414.0)

command を実行する.

...mand を実行する.

@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#system(command, *opts) -> Shell::SystemCommand (415.0)

command を実行する.

...mand を実行する.

@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 (414.0)

command を実行する.

...mand を実行する.

@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...