- すべて(1008)
- 2.1.0(168)
- 2.2.0(168)
- 2.3.0(168)
- 2.4.0(168)
- 2.5.0(168)
- 2.6.0(168)
1008件ヒット
[1-100件を表示]
(0.034秒)
クラス
- Shell (282)
-
Shell
:: AppendFile (6) -
Shell
:: AppendIO (6) -
Shell
:: BuiltInCommand (12) -
Shell
:: CommandProcessor (408) -
Shell
:: Filter (168) -
Shell
:: ProcessController (30) -
Shell
:: SystemCommand (90) -
Shell
:: Void (6)
キーワード
- [] (18)
- active? (12)
-
add
_ schedule (6) - append (18)
- atime (6)
- basename (6)
- blockdev? (18)
- cat (6)
- cd (6)
- chardev? (18)
- chdir (6)
-
check
_ point (6) - chmod (18)
- chown (6)
- command (6)
-
command
_ processor (6) - concat (6)
- ctime (6)
- cwd (6)
- debug (6)
- debug= (6)
- debug? (6)
- delete (18)
- dir (6)
-
dir
_ stack (6) - directory? (18)
- dirname (18)
- dirs (6)
- each (12)
- echo (6)
- executable? (6)
-
executable
_ real? (6) - exist? (6)
- exists? (6)
- file? (6)
-
find
_ system _ command (18) -
finish
_ all _ jobs (6) - flush (6)
- foreach (6)
- ftype (6)
- getwd (6)
- glob (6)
- grpowned? (18)
- identical? (18)
- input= (18)
- join (6)
- kill (6)
-
kill
_ job (6) - link (18)
- lstat (6)
- mkdir (18)
- mtime (6)
- name (6)
- notify (18)
- open (18)
- out (18)
- owned? (18)
- pipe? (6)
- popd (6)
- popdir (6)
- pushd (6)
- pushdir (6)
- pwd (6)
- readable? (18)
-
readable
_ real? (18) - readlink (18)
-
record
_ separator (6) -
record
_ separator= (6) - rehash (6)
- rename (6)
- rm (18)
- rmdir (18)
- setgid? (18)
- setuid? (18)
- sfork (6)
- size (6)
- size? (6)
- socket? (6)
- split (6)
- start (6)
-
start
_ export (6) -
start
_ import (6) -
start
_ job (6) - stat (6)
- sticky? (6)
-
super
_ each (6) - symlink (18)
- symlink? (6)
- system (18)
- tee (6)
- terminate (6)
-
terminate
_ job (6) - test (18)
- transact (6)
- truncate (6)
- unlink (6)
- utime (6)
- wait? (12)
-
world
_ readable? (18) -
world
_ writable? (18) - writable? (6)
-
writable
_ real? (6) - zero? (6)
検索結果
先頭5件
-
Shell
# append(to , filter) -> Shell :: AppendFile | Shell :: AppendIO (6103.0) -
@todo
...@todo
@param to 文字列か IO を指定します。
@param filter Shell::Filter のインスタンスを指定します。... -
Shell
# blockdev?(file) -> bool (6103.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#blockdev?... -
Shell
# cd(path , &block) -> self (6103.0) -
カレントディレクトリをpathにする. イテレータとして呼ばれたときには ブロック実行中のみカレントディレクトリを変更する.
...レクトリを文字列で指定します.
@param block path で指定したディレクトリで行う操作をブロックで指定します.
使用例
require 'shell'
sh = Shell.new
sh.transact {
cd("/tmp"){
p cwd #=> "/tmp"
}
p cwd #=> "/Users/kouya/rbmanual"
}... -
Shell
# chardev?(file) -> bool (6103.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#chardev?... -
Shell
# chdir(path , &block) -> self (6103.0) -
カレントディレクトリをpathにする. イテレータとして呼ばれたときには ブロック実行中のみカレントディレクトリを変更する.
...レクトリを文字列で指定します.
@param block path で指定したディレクトリで行う操作をブロックで指定します.
使用例
require 'shell'
sh = Shell.new
sh.transact {
cd("/tmp"){
p cwd #=> "/tmp"
}
p cwd #=> "/Users/kouya/rbmanual"
}... -
Shell
# chmod(mode , *filename) -> Integer (6103.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@param mode chmod(2) と同様に整数で指定します。
@see File.chmod... -
Shell
# command _ processor -> Shell :: CommandProcessor (6103.0) -
@todo
...@todo... -
Shell
# cwd -> String (6103.0) -
カレントディレクトリのパスを文字列で返します。
...カレントディレクトリのパスを文字列で返します。
使用例
require 'shell'
sh = Shell.new
p sh.cwd
# 例
#=> "/Users/kouya/tall"... -
Shell
# debug -> bool | Integer (6103.0) -
@todo
...@todo... -
Shell
# debug=(flag) (6103.0) -
@todo
...@todo... -
Shell
# debug? -> bool | Integer (6103.0) -
@todo
...@todo... -
Shell
# delete(*filename) -> Integer (6103.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@see File.delete... -
Shell
# dir -> String (6103.0) -
カレントディレクトリのパスを文字列で返します。
...カレントディレクトリのパスを文字列で返します。
使用例
require 'shell'
sh = Shell.new
p sh.cwd
# 例
#=> "/Users/kouya/tall"... -
Shell
# dir _ stack -> [String] (6103.0) -
@todo
...@todo... -
Shell
# directory?(file) -> bool (6103.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
Shell
# dirname(filename) -> String (6103.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@see File.dirname... -
Shell
# dirs -> [String] (6103.0) -
@todo
...@todo...