要約
コマンドの実行結果はすべて Shell::Filter か、そのサブクラスのインスタンスとして返ります。
目次
- 特異メソッド
- インスタンスメソッド
-
- +
- <
- >
- >>
- []
- |
- append
- atime
- basename
- blockdev?
- cat
- chardev?
- check_point
- chmod
- chown
- concat
- ctime
- delete
- directory?
- dirname
- each
- echo
- executable?
- executable_real?
- exist?
- exists?
- file?
- find_system_command
- finish_all_jobs
- foreach
- ftype
- glob
- grpowned?
- identical?
- input
- input=
- inspect
- join
- link
- lstat
- mkdir
- mtime
- notify
- open
- out
- owned?
- pipe?
- readable?
- readable_real?
- readlink
- rehash
- rename
- rm
- rmdir
- setgid?
- setuid?
- size
- size?
- socket?
- split
- stat
- sticky?
- symlink
- symlink?
- system
- tee
- test
- to_a
- to_s
- transact
- truncate
- unlink
- utime
- world_readable?
- world_writable?
- writable?
- writable_real?
- zero?
継承しているメソッド
- Enumerableから継承しているメソッド
-
- all?
- any?
- chunk
- chunk_while
- collect
- collect_concat
- count
- cycle
- detect
- drop
- drop_while
- each_cons
- each_entry
- each_slice
- each_with_index
- each_with_object
- entries
- find
- find_all
- find_index
- first
- flat_map
- grep
- grep_v
- group_by
- include?
- inject
- lazy
- map
- max
- max_by
- member?
- min
- min_by
- minmax
- minmax_by
- none?
- one?
- partition
- reduce
- reject
- reverse_each
- select
- slice_after
- slice_before
- slice_when
- sort
- sort_by
- sum
- take
- take_while
- to_h
- uniq
- zip
特異メソッド
new(sh) -> Shell::Filter
[permalink][rdoc][edit]-
Shell::Filter クラスのインスタンスを返します。通常このメソッドを直接使う機会は少ないでしょう。
インスタンスメソッド
self + filter
[permalink][rdoc][edit]-
執筆者募集
filter1 + filter2 は filter1の出力の後, filter2の出力を行う。
self < src -> self
[permalink][rdoc][edit]-
srcをフィルタの入力とする。 srcが, 文字列ならばファイルを, IOオブジェクトであればそれをそのまま入力とする。
- [PARAM] src:
- フィルタの入力を, 文字列もしくは,IO オブジェクトで指定します。
使用例
require 'shell' Shell.def_system_command("head") sh = Shell.new sh.transact { (sh.head("-n 30") < "/etc/passwd") > "ugo.txt" }
self > to -> self
[permalink][rdoc][edit]-
toをフィルタの出力とする。 toが, 文字列ならばファイルに, IOオブジェクトであればそれをそのまま出力とする。
- [PARAM] to:
- 出力先を指定します。文字列ならばファイルに,IOオブジェクトならばそれに出力します。
使用例
require 'shell' Shell.def_system_command("tail") sh = Shell.new sh.transact { (sh.tail("-n 3") < "/etc/passwd") > File.open("tail.out", "w") #(sh.tail("-n 3") < "/etc/passwd") > "tail.out" # と同じ. }
self >> to -> self
[permalink][rdoc][edit]-
toをフィルタに追加する。 toが, 文字列ならばファイルに, IOオブジェクトであればそれをそのまま出力とする。
- [PARAM] to:
- 出力先を指定します。文字列ならばファイルに、IOオブジェクトならばそれに出力します。
使用例
require 'shell' Shell.def_system_command("tail") sh = Shell.new sh.transact { (sh.tail("-n 3") < "/etc/passwd") >> "tail.out" #(sh.tail("-n 3") < "/etc/passwd") >> File.open("tail.out", "w") # でも同じ。 }
test(command, file1, file2 = nil) -> bool | Time | Integer | nil
[permalink][rdoc][edit]self[command, file1, file2 = nil] -> bool | Time | Integer | nil
-
Kernel.#test や FileTest のメソッドに処理を委譲します。
- [PARAM] command:
- 数値、またはサイズが 1 の文字列の場合は Kernel.#test に処理委譲します。 2 文字以上の文字列の場合は FileTest のメソッドとして実行します。
- [PARAM] file1:
- 文字列でファイルへのパスを指定します。
- [PARAM] file2:
- 文字列でファイルへのパスを指定します。
require 'shell' Shell.verbose = false sh = Shell.new begin sh.mkdir("foo") rescue end p sh[?e, "foo"] # => true p sh[:e, "foo"] # => true p sh["e", "foo"] # => true p sh[:exists?, "foo"] # => true p sh["exists?", "foo"] # => true
[SEE_ALSO] Kernel.#test, FileTest
append(to, filter) -> Shell::AppendFile | Shell::AppendIO
[permalink][rdoc][edit]-
[TODO]
- [PARAM] to:
- 文字列か IO を指定します。
- [PARAM] filter:
- Shell::Filter のインスタンスを指定します。
atime(filename) -> Time
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] File.atime
basename(filename, suffix = "") -> String
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
- [PARAM] suffix:
- サフィックスを文字列で与えます。'.*' という文字列を与えた場合、'*' はワイルドカードとして働き '.' を含まない任意の文字列にマッチします。
[SEE_ALSO] File.basename
blockdev?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#blockdev?
cat(*files) -> Shell::Filter
[permalink][rdoc][edit]-
実行すると, それらを内容とする Filter オブジェクトを返します.
- [PARAM] files:
- シェルコマンド 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 + ".tee") >> "all.tee" } } }
chardev?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#chardev?
check_point
[permalink][rdoc][edit]finish_all_jobs
-
[TODO]
chmod(mode, *filename) -> Integer
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
- [PARAM] mode:
- chmod(2) と同様に整数で指定します。
[SEE_ALSO] File.chmod
chown(owner, group, *filename) -> Integer
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] owner:
- chown(2) と同様に数値で指定します。nil または -1 を指定することで、オーナーを現在のままにすることができます。
- [PARAM] group:
- chown(2) と同様に数値で指定します。nil または -1 を指定することで、グループを現在のままにすることができます。
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.chown
concat(*jobs) -> Shell::Concat
[permalink][rdoc][edit]-
[TODO]
ctime(filename) -> Time
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] File.ctime
delete(*filename) -> Integer
[permalink][rdoc][edit]rm(*filename) -> Integer
-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.delete
directory?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#directory?
dirname(filename) -> String
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.dirname
each(rs = nil) -> ()
[permalink][rdoc][edit]-
フィルタの一行ずつをblockに渡します。
- [PARAM] rs:
- レコードセパレーターを表す文字列を指定します。 nil ならば、Shell.record_separatorの値が使用されます。
使用例
require 'shell' sh = Shell.new sh.cat("/etc/passwd").each { |line| puts line }
echo(*strings) -> Shell::Filter
[permalink][rdoc][edit]-
実行すると, それらを内容とする Filter オブジェクトを返します.
- [PARAM] strings:
- シェルコマンド 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") >> "all.tee" } } }
executable?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#executable?
executable_real?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#executable_real?
exist?(file) -> bool
[permalink][rdoc][edit]exists?(file) -> bool
-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#exist? FileTest.#exists?
file?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#file?
find_system_command(command)
[permalink][rdoc][edit]-
[TODO]
foreach(path = nil, &block) -> ()
[permalink][rdoc][edit]-
pathがファイルなら, File#foreach pathがディレクトリなら, Dir#foreach の動作をします。
- [PARAM] path:
- ファイルもしくはディレクトリのパスを文字列で指定します。
使用例
require 'shell' Shell.verbose = false sh = Shell.new sh.foreach("/tmp"){|f| puts f }
ftype(filename) -> String
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.ftype
glob(pattern) -> Shell::Filter
[permalink][rdoc][edit]-
実行すると, それらを内容とする Filter オブジェクトを返します.
- [PARAM] pattern:
- シェルコマンド glob に与えるパターンを指定します。パターンの書式については、Dir.[]を参照してください。
動作例
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" } } }
[SEE_ALSO] Dir.[]
grpowned?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#grpowned?
identical?
[permalink][rdoc][edit]-
[TODO]
input -> Shell::Filter | nil
[permalink][rdoc][edit]-
現在のフィルターを返します。
input=(filter)
[permalink][rdoc][edit]-
フィルターを設定します。
- [PARAM] filter:
- フィルターを指定します。
inspect -> String
[permalink][rdoc][edit]-
オブジェクトを人間が読める形式に変換した文字列を返します。
[SEE_ALSO] Object#inspect
join(*item) -> String
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] item:
- 連結したいディレクトリ名やファイル名を文字列で与えます。
[SEE_ALSO] File.join
link(old, new) -> 0
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] old:
- ファイル名を表す文字列を指定します。
- [PARAM] new:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.link
lstat(filename) -> File::Stat
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.lstat
mkdir(*path) -> Array
[permalink][rdoc][edit]-
Dir.mkdirと同じです。 (複数可)
- [PARAM] path:
- 作成するディレクトリ名を文字列で指定します。
- [RETURN]
- 作成するディレクトリの一覧の配列を返します。
使用例
require 'shell' Shell.verbose = false sh = Shell.new begin p sh.mkdir("foo") #=> ["foo"] rescue => err puts err end
mtime(filename) -> Time
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] File.mtime
notify(*opts) { ... } -> ()
[permalink][rdoc][edit]-
[TODO]
open(path, mode) -> File | Dir
[permalink][rdoc][edit]-
path がファイルなら、 File.open path がディレクトリなら、 Dir.open の動作をします。
- [PARAM] path:
- 開きたいパスを指定します。
- [PARAM] mode:
- アクセスモードを指定します。path がディレクトリの場合は無視されます。
out(dev = STDOUT, &block) -> ()
[permalink][rdoc][edit]-
Shell#transact を呼び出しその結果を dev に出力します。
- [PARAM] dev:
- 出力先をIO オブジェクトなどで指定します。
- [PARAM] block:
- transact 内部で実行するシェルを指定します。
使用例:
require 'shell' Shell.def_system_command("head") sh = Shell.new File.open("out.txt", "w"){ |fp| sh.out(fp) { system("ls", "-l") | head("-n 3") } }
owned?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#owned?
pipe?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列か IO オブジェクトを指定します。
[SEE_ALSO] FileTest.#pipe?
readable?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#readable?
readable_real?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#readable_real?
readlink(path) -> String
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] path:
- シンボリックリンクを表す文字列を指定します。
[SEE_ALSO] File.readlink
rehash -> {}
[permalink][rdoc][edit]-
登録されているシステムコマンドの情報をクリアします。通常、使うことはありません。
rename(from, to) -> 0
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] from:
- ファイルの名前を文字列で与えます。
- [PARAM] to:
- 新しいファイル名を文字列で与えます。
[SEE_ALSO] File.rename
rmdir(*path) -> ()
[permalink][rdoc][edit]-
Dir.rmdirと同じです。 (複数可)
- [PARAM] path:
- 削除するディレクトリ名を文字列で指定します。
setgid?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#setgid?
setuid?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#setuid?
size(file) -> Integer
[permalink][rdoc][edit]size?(file) -> Integer | nil
-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#size FileTest.#size?
socket?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#socket?
split(pathname) -> [String]
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] pathname:
- パス名を表す文字列を指定します。
[SEE_ALSO] File.split
stat(filename) -> File::Stat
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] File.stat
sticky?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#sticky?
symlink(old, new) -> 0
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] old:
- ファイル名を表す文字列を指定します。
- [PARAM] new:
- シンボリックリンクを表す文字列を指定します。
[SEE_ALSO] File.symlink
symlink?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#symlink?
system(command, *opts) -> Shell::SystemCommand
[permalink][rdoc][edit]-
command を実行する.
- [PARAM] 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
tee(file) -> Shell::Filter
[permalink][rdoc][edit]-
実行すると, それらを内容とする Filter オブジェクトを返します.
- [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" } } }
to_a -> [String]
[permalink][rdoc][edit]-
実行結果を文字列の配列で返します。
require 'shell' Shell.def_system_command("wc") sh = Shell.new puts sh.cat("/etc/passwd").to_a
to_s -> String
[permalink][rdoc][edit]-
実行結果を文字列で返します。
require 'shell' Shell.def_system_command("wc") sh = Shell.new sh.transact { puts (cat("/etc/passwd") | wc("-l")).to_s }
transact { ... } -> object
[permalink][rdoc][edit]-
ブロック中で 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 と同じとなる。 }
truncate(path, length) -> 0
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] path:
- パスを表す文字列を指定します。
- [PARAM] length:
- 変更したいサイズを整数で与えます。
[SEE_ALSO] File.truncate
unlink(path) -> self
[permalink][rdoc][edit]-
path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。
- [PARAM] path:
- 削除したいパスを指定します。
[SEE_ALSO] File.unlink, Dir.unlink
utime(atime, mtime, *filename) -> Integer
[permalink][rdoc][edit]-
File クラスにある同名のクラスメソッドと同じです.
- [PARAM] filename:
- ファイル名を表す文字列を指定します。
- [PARAM] atime:
- 最終アクセス時刻を Time か、起算時からの経過秒数を数値で指定します。
- [PARAM] utime:
- 更新時刻を Time か、起算時からの経過秒数を数値で指定します。
[SEE_ALSO] File.utime
world_readable?
[permalink][rdoc][edit]-
[TODO]
world_writable?
[permalink][rdoc][edit]-
[TODO]
writable?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#writable?
writable_real?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#writable_real?
zero?(file) -> bool
[permalink][rdoc][edit]-
FileTest モジュールにある同名のクラスメソッドと同じです.
- [PARAM] file:
- ファイル名を表す文字列を指定します。
[SEE_ALSO] FileTest.#zero?
self | filter -> object
[permalink][rdoc][edit]-
パイプ結合を filter に対して行います。
- [PARAM] filter:
- Shell::Filter オブジェクトを指定します。
- [RETURN]
- filter を返します。
使用例
require 'shell' Shell.def_system_command("tail") Shell.def_system_command("head") Shell.def_system_command("wc") sh = Shell.new sh.transact { i = 1 while i <= (cat("/etc/passwd") | wc("-l")).to_s.chomp.to_i puts (cat("/etc/passwd") | head("-n #{i}") | tail("-n 1")).to_s i += 1 end }