312件ヒット
[1-100件を表示]
(0.109秒)
別のキーワード
ライブラリ
- ビルトイン (48)
- matrix (12)
- mkmf (12)
-
net
/ ftp (12) - rake (12)
-
rexml
/ document (36) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (24) - shell (24)
-
shell
/ command-processor (48) -
shell
/ filter (12) -
shell
/ system-command (36)
クラス
-
File
:: Stat (12) - Matrix (12)
-
Net
:: FTP (12) -
RDoc
:: Options (12) -
REXML
:: DocType (36) -
Rake
:: Application (12) - Shell (24)
-
Shell
:: CommandProcessor (48) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (36) - SystemCallError (12)
- SystemExit (24)
モジュール
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (24)
キーワード
- cat (6)
- doctype (24)
- echo (6)
- eigensystem (12)
- entitydecl (12)
- errno (12)
-
external
_ id (12) -
find
_ system _ command (6) - glob (18)
- input= (6)
- notationdecl (12)
- notify (12)
-
op
_ dir (12) - out (6)
- pipe? (12)
- public (12)
-
start
_ export (6) -
start
_ import (6) - status (12)
- success? (12)
-
super
_ each (6) -
system
_ path (6) -
system
_ path= (6) - tee (6)
- transact (6)
- xsystem (12)
検索結果
先頭5件
-
Shell
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (21320.0) -
command を実行する.
...る.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_comma......nd("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
REXML
:: DocType # system -> String | nil (21120.0) -
DTD のシステム識別子を返します。
...ype = 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"
doctyp......e = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
doctype.public # => nil
//}... -
Net
:: FTP # system -> String (21102.0) -
サーバーの OS のタイプを返します。
...。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。
@raise Net::FTPReplyError 応答コー... -
Shell
# system(command , *opts) -> Shell :: SystemCommand (18320.0) -
command を実行する.
...る.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_comma......nd("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (18320.0) -
command を実行する.
...る.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_comma......nd("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
# system _ path=(path) (12321.0) -
コマンドサーチパスの配列を返す。
...コマンドサーチパスの配列を返す。
@param path コマンドサーチパスの配列を指定します。
使用例
require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]... -
Shell
# system _ path -> Array (12221.0) -
コマンドサーチパスの配列を返す。
...コマンドサーチパスの配列を返す。
@param path コマンドサーチパスの配列を指定します。
使用例
require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]... -
Shell
:: CommandProcessor # find _ system _ command(command) (9102.0) -
@todo
@todo -
Shell
:: SystemCommand # input=(inp) (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # start _ export (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # start _ import -> () (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # super _ each -> () (9101.0) -
@todo
@todo
Shell::Filter#each です。 -
Kernel
# xsystem(command , opts = nil) -> () (6223.0) -
Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー 出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
...Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー
出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
@param command コマンドを指定します。
@param opts オプションを Hash で指定します。......:werror というキーに真を指定すると
@see Kernel.#system... -
REXML
:: DocType # public -> String | nil (6119.0) -
DTD の公開識別子を返します。
...ype = 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"
doctyp......e = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
doctype.public # => nil
//}...