1470件ヒット
[1-100件を表示]
(0.079秒)
ライブラリ
- etc (24)
- shell (432)
-
shell
/ builtin-command (48) -
shell
/ command-processor (408) -
shell
/ filter (366) -
shell
/ process-controller (90) -
shell
/ system-command (90) - shellwords (12)
クラス
-
Etc
:: Passwd (24) - Shell (432)
-
Shell
:: BuiltInCommand (12) -
Shell
:: Cat (6) -
Shell
:: CommandProcessor (408) -
Shell
:: Concat (6) -
Shell
:: Echo (6) -
Shell
:: Filter (366) -
Shell
:: Glob (6) -
Shell
:: ProcessController (90) -
Shell
:: SystemCommand (90) -
Shell
:: Tee (6) -
Shell
:: Void (6) - String (12)
キーワード
- < (6)
- [] (18)
- active? (12)
-
active
_ job? (6) -
active
_ jobs (6) -
active
_ jobs _ exist? (6) -
add
_ schedule (6) - append (18)
- atime (18)
- basename (18)
- blockdev? (18)
- cat (18)
- cd (6)
- chardev? (18)
- chdir (6)
-
check
_ point (18) - chmod (18)
- chown (18)
- command (6)
-
command
_ processor (6) - concat (18)
- ctime (18)
- cwd (6)
- delete (18)
- dir (6)
-
dir
_ stack (6) - directory? (18)
- dirname (18)
- dirs (6)
- each (48)
- echo (18)
- executable? (18)
-
executable
_ real? (18) - exist? (18)
- exists? (18)
- file? (18)
-
find
_ system _ command (18) -
finish
_ all _ jobs (18) - flush (6)
- foreach (18)
- ftype (18)
- getwd (6)
- glob (6)
- grpowned? (18)
- identical? (18)
- input= (6)
- inspect (6)
- jobs (6)
-
jobs
_ exist? (6) - join (18)
- kill (6)
-
kill
_ job (6) - link (18)
- lstat (18)
- mkdir (6)
- mtime (18)
- name (6)
- notify (18)
- open (6)
- out (18)
- owned? (18)
- pipe? (18)
-
process
_ controller (6) - pushd (6)
- pushdir (6)
- pwd (6)
- readable? (18)
-
readable
_ real? (18) - readlink (18)
-
record
_ separator (6) -
record
_ separator= (6) - rehash (6)
- rename (18)
- rm (18)
- rmdir (6)
- setgid? (18)
- setuid? (18)
- sfork (6)
- shell= (12)
- shellescape (12)
- size (18)
- size? (18)
- socket? (18)
- split (18)
- start (6)
-
start
_ export (6) -
start
_ import (6) -
start
_ job (6) - stat (18)
- sticky? (18)
-
super
_ each (6) - symlink (18)
- symlink? (18)
- system (18)
- tee (6)
- terminate (6)
-
terminate
_ job (6) - test (18)
- transact (18)
- truncate (18)
- umask (6)
- unlink (6)
- utime (18)
- wait? (12)
-
wait
_ all _ jobs _ execution (6) -
waiting
_ job? (6) -
waiting
_ jobs (6) -
waiting
_ jobs _ exist? (6) -
world
_ readable? (6) -
world
_ writable? (6) - writable? (18)
-
writable
_ real? (18) - zero? (18)
- | (6)
検索結果
先頭5件
-
Shell
:: ProcessController # shell -> Shell (24203.0) -
@todo
@todo -
Shell
# command _ processor -> Shell :: CommandProcessor (23302.0) -
@todo
@todo -
Shell
# concat(*jobs) -> Shell :: Concat (23302.0) -
@todo
@todo -
Shell
# process _ controller -> Shell :: ProcessController (23302.0) -
@todo
@todo -
Shell
# transact { . . . } -> object (23235.0) -
ブロック中で shell を self として実行します。
...ブロック中で shell を self として実行します。
例:
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact{
system("ls", "-l") | head > STDOUT
# transact の中では、
# sh.system("ls", "-l") | sh.head > STDOUT と同じとなる。
}... -
Shell
# cat(*files) -> Shell :: Filter (23220.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...s シェルコマンド cat に与えるファイル名を文字列で指定します。
動作例
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 + ".t... -
Shell
# echo(*strings) -> Shell :: Filter (23220.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ings シェルコマンド echo に与える引数を文字列で指定します。
動作例
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")... -
Shell
# find _ system _ command(command) (23201.0) -
@todo
@todo -
Shell
# foreach(path = nil , &block) -> () (23119.0) -
pathがファイルなら, File#foreach pathがディレクトリなら, Dir#foreach の動作をします。
...イルなら, File#foreach
pathがディレクトリなら, Dir#foreach
の動作をします。
@param path ファイルもしくはディレクトリのパスを文字列で指定します。
使用例
require 'shell'
Shell.verbose = false
sh = Shell.new
sh.foreach("/tmp"){|f|
puts f... -
Shell
# blockdev?(file) -> bool (23117.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#blockdev?... -
Shell
# chardev?(file) -> bool (23117.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#chardev?... -
Shell
# chmod(mode , *filename) -> Integer (23117.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@param mode chmod(2) と同様に整数で指定します。
@see File.chmod... -
Shell
# chown(owner , group , *filename) -> Integer (23117.0) -
File クラスにある同名のクラスメソッドと同じです.
...る同名のクラスメソッドと同じです.
@param owner chown(2) と同様に数値で指定します。nil または -1 を指定することで、オーナーを現在のままにすることができます。
@param group chown(2) と同様に数値で指定します。nil または -1......を指定することで、グループを現在のままにすることができます。
@param filename ファイル名を表す文字列を指定します。
@see File.chown... -
Shell
# ctime(filename) -> Time (23117.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列か IO オブジェクトを指定します。
@see File.ctime... -
Shell
# directory?(file) -> bool (23117.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
# executable?(file) -> bool (23117.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable?... -
Shell
# executable _ real?(file) -> bool (23117.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?...