342件ヒット
[1-100件を表示]
(0.111秒)
ライブラリ
- matrix (12)
- mkmf (12)
- rake (12)
-
rexml
/ document (60) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (36) - shell (18)
-
shell
/ command-processor (48) -
shell
/ filter (18) -
shell
/ system-command (90)
クラス
- Matrix (12)
-
RDoc
:: Options (12) -
REXML
:: DocType (36) -
REXML
:: NotationDecl (24) - Shell (18)
-
Shell
:: CommandProcessor (48) -
Shell
:: Filter (18) -
Shell
:: SystemCommand (90)
モジュール
- FileUtils (12)
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (36)
キーワード
- active? (6)
- cat (6)
- command (6)
- doctype (24)
- each (6)
- echo (6)
- eigensystem (12)
- entitydecl (12)
-
external
_ id (12) -
find
_ system _ command (18) - flush (6)
- glob (6)
- input= (6)
- kill (6)
- name (6)
- notationdecl (24)
- notify (12)
-
op
_ dir (12) - out (18)
- public (12)
- sh (12)
- start (6)
-
start
_ export (6) -
start
_ import (6) -
super
_ each (6) - system= (12)
- tee (6)
- terminate (6)
- transact (6)
- wait? (6)
- xsystem (12)
検索結果
先頭5件
-
Shell
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (21320.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... -
REXML
:: DocType # system -> String | nil (21120.0) -
DTD のシステム識別子を返します。
...DTD のシステム識別子を返します。
DTD が外部サブセットを含んでいない場合は nil を返します。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.......org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype.system # => "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype.public # => "-//W3C//DTD XHTML 1.0 Strict//EN"
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
doctype.public #... -
REXML
:: NotationDecl # system -> String | nil (21102.0) -
システム識別子(URI)を返します。
システム識別子(URI)を返します。
宣言がシステム識別子を含まない場合は nil を返します。 -
Shell
# system(command , *opts) -> Shell :: SystemCommand (18320.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... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (18320.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... -
Shell
# find _ system _ command(command) (12202.0) -
@todo
...@todo... -
Shell
:: CommandProcessor # find _ system _ command(command) (12202.0) -
@todo
...@todo... -
Shell
:: Filter # find _ system _ command(command) (12202.0) -
@todo
...@todo... -
REXML
:: NotationDecl # system=(value) (9102.0) -
システム識別子を変更します。
システム識別子を変更します。
@param value 設定するシステム識別子 -
Shell
:: SystemCommand # command -> String (9101.0) -
@todo
...@todo
コマンド名を返します。... -
REXML
:: SAX2Listener # notationdecl(name , public _ or _ system , public _ id , system _ id) -> () (6321.0) -
DTDの記法宣言に出会ったときに呼び出されるコールバックメソッドです。
...DTDの記法宣言に出会ったときに呼び出されるコールバックメソッドです。
@param name 記法名が文字列で渡されます
@param public_or_system "PUBLIC" もしくは "SYSTEM" が渡されます
@param public_id 公開識別子が文字列で渡されます。指定......されていない場合はnilが渡されます
@param system_id システム識別子が文字列で渡されます。指定されていない場合はnilが渡されます... -
Kernel
# xsystem(command , opts = nil) -> () (6223.0) -
Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー 出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
...Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー
出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
@param command コマンドを指定します。
@param opts オプションを Hash で指定します。......:werror というキーに真を指定すると
@see Kernel.#system...