るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

キーワード

検索結果

<< 1 2 3 > >>

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

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

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

Shell::SystemCommand#terminate -> () (18202.0)

@todo

...@todo...

Shell::Filter#find_system_command(command) (15203.0)

@todo

...@todo...

絞り込み条件を変える

Shell#system_path -> Array (12217.0)

コマンドサーチパスの配列を返す。

...コマンドサーチパスの配列を返す。

@param path コマンドサーチパスの配列を指定します。

使用例

require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]...

Shell#system_path=(path) (12217.0)

コマンドサーチパスの配列を返す。

...コマンドサーチパスの配列を返す。

@param path コマンドサーチパスの配列を指定します。

使用例

require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]...

Shell#find_system_command(command) (12204.0)

@todo

...@todo...

Shell::CommandProcessor#find_system_command(command) (12203.0)

@todo

...@todo...

Shell::Filter#tee(file) -> Shell::Filter (9208.0)

実行すると, それらを内容とする Filter オブジェクトを返します.

...lter オブジェクトを返します.

@param file シェルコマンドtee に与えるファイル名を文字列で指定します。

動作例
require 'shell'
Shell
.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!
cat...
...(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}...

絞り込み条件を変える

Shell::SystemCommand#active? -> bool (9102.0)

@todo

...@todo...

Shell::SystemCommand#input=(inp) (9102.0)

@todo

...@todo...

Shell::SystemCommand#notify(*opts) -> String (9102.0)

@todo

...@todo

@param opts

@see Shell#notify...

Shell::SystemCommand#notify(*opts) {|message| ... } -> String (9102.0)

@todo

...@todo

@param opts

@see Shell#notify...

Shell::SystemCommand#start -> () (9102.0)

@todo

...@todo...

絞り込み条件を変える

Shell::SystemCommand#start_export (9102.0)

@todo

...@todo...

Shell::SystemCommand#start_import -> () (9102.0)

@todo

...@todo...
<< 1 2 3 > >>