294件ヒット
[1-100件を表示]
(0.080秒)
ライブラリ
- mkmf (12)
- rake (12)
- shell (48)
-
shell
/ command-processor (48) -
shell
/ filter (84) -
shell
/ system-command (90)
クラス
- Shell (48)
-
Shell
:: CommandProcessor (48) -
Shell
:: Filter (84) -
Shell
:: SystemCommand (90)
キーワード
- < (6)
- > (6)
- >> (6)
- active? (6)
- cat (18)
- each (6)
- echo (18)
-
find
_ system _ command (18) - flush (6)
- glob (18)
- input= (6)
- kill (6)
- name (6)
- notify (12)
- out (18)
- sh (12)
- start (6)
-
start
_ export (6) -
start
_ import (6) -
super
_ each (6) - tee (18)
- terminate (6)
-
to
_ a (6) -
to
_ s (6) - transact (18)
- wait? (6)
- xsystem (12)
- | (6)
検索結果
先頭5件
-
Shell
:: SystemCommand # command -> String (24102.0) -
@todo
@todo
コマンド名を返します。 -
Shell
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (21455.0) -
command を実行する.
...
command を実行する.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
S......hell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
# system(command , *opts) -> Shell :: SystemCommand (18455.0) -
command を実行する.
...
command を実行する.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
S......hell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (18455.0) -
command を実行する.
...
command を実行する.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
S......hell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
:: CommandProcessor # find _ system _ command(command) (15304.0) -
@todo
@todo -
Shell
# find _ system _ command(command) (12304.0) -
@todo
@todo -
Shell
:: Filter # find _ system _ command(command) (12304.0) -
@todo
@todo -
Shell
:: SystemCommand # name -> String (9002.0) -
@todo
@todo
コマンド名を返します。 -
Kernel
# xsystem(command , opts = nil) -> () (6230.0) -
Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー 出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
...Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー
出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
@param command コマンドを指定します。
@param opts オプションを Hash で指定します。......:werror というキーに真を指定すると
@see Kernel.#system... -
Shell
:: SystemCommand # active? -> bool (6001.0) -
@todo
@todo -
Shell
:: SystemCommand # each(rs = nil) {|line| . . . } (6001.0) -
@todo
@todo
@param rs -
Shell
:: SystemCommand # flush -> () (6001.0) -
@todo
@todo -
Shell
:: SystemCommand # input=(inp) (6001.0) -
@todo
@todo -
Shell
:: SystemCommand # kill(signal) -> Integer (6001.0) -
自身のプロセスにシグナルを送ります。
自身のプロセスにシグナルを送ります。
@param signal シグナルを整数かその名前の文字列で指定します。
負の値を持つシグナル(あるいはシグナル名の前に-)を指定すると、
プロセスではなくプロセスグループにシグナルを送ります。
@see Process.#kill -
Shell
:: SystemCommand # notify(*opts) -> String (6001.0) -
@todo
@todo
@param opts
@see Shell#notify -
Shell
:: SystemCommand # notify(*opts) {|message| . . . } -> String (6001.0) -
@todo
@todo
@param opts
@see Shell#notify