372件ヒット
[1-100件を表示]
(0.085秒)
種類
- インスタンスメソッド (258)
- 特異メソッド (60)
- モジュール関数 (48)
- 定数 (6)
クラス
- Array (12)
- Shell (108)
-
Shell
:: CommandProcessor (54) -
Shell
:: Echo (6) -
Shell
:: Filter (60) -
Shell
:: SystemCommand (24) - String (24)
モジュール
- Shellwords (84)
キーワード
- NoDelegateMethods (6)
- basename (18)
- command (6)
- cwd (6)
-
default
_ record _ separator (6) -
default
_ record _ separator= (6) - dir (6)
-
dir
_ stack (6) - dirname (18)
- dirs (6)
- echo (18)
- escape (12)
- ftype (18)
- getwd (6)
- inspect (6)
- join (30)
- name (6)
- new (6)
- notify (18)
- pwd (6)
- readlink (18)
-
record
_ separator (6) - shellescape (24)
- shelljoin (24)
- shellsplit (24)
- shellwords (12)
- split (30)
-
to
_ a (6) -
to
_ s (6)
検索結果
先頭5件
-
String
# shellsplit -> [String] (27214.0) -
Bourne シェルの単語分割規則に従った空白区切りの単語分割を行い、 単語 (文字列) の配列を返します。
...分割を行い、
単語 (文字列) の配列を返します。
string.shellsplit は、Shellwords.shellsplit(string) と等価です。
@return 分割結果の各文字列を要素とする配列を返します。
@raise ArgumentError 引数の中に対でないシングルクォートまたは......ダブル
クォートが現れた場合に発生します。
@see Shellwords.#shellsplit... -
String
# shellescape -> String (24214.0) -
文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
...文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
string.shellescape は、Shellwords.escape(string) と等価です。
@return エスケープされた文字列を返します。
@see Shellwords.#shellescape... -
Shell
# expand _ path(path) -> String (6303.0) -
Fileクラスにある同名のクラスメソッドと同じです.
...Fileクラスにある同名のクラスメソッドと同じです.
@param path ファイル名を表す文字列を指定します。
@see File.expand_path... -
Shell
:: CommandProcessor # expand _ path(path) -> String (6302.0) -
Fileクラスにある同名のクラスメソッドと同じです.
...Fileクラスにある同名のクラスメソッドと同じです.
@param path ファイル名を表す文字列を指定します。
@see File.expand_path... -
Shell
# dir _ stack -> [String] (6204.0) -
@todo
...@todo... -
Shell
# ftype(filename) -> String (6203.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@see File.ftype... -
Shell
# record _ separator -> String (6203.0) -
@todo
...@todo... -
Shell
# split(pathname) -> [String] (6203.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param pathname パス名を表す文字列を指定します。
@see File.split... -
Shell
. default _ record _ separator -> String (6203.0) -
執筆者募集
...執筆者募集
Shell で用いられる入力レコードセパレータを表す文字列を設定および参照します。
なにも指定しない場合は$/ の値が用いられます。
@param rs Shell で用いられる入力レコードセパレータを表す文字列を指定しま... -
Shell
. notify(*opts) {|message| . . . } -> String (6203.0) -
@todo
...@todo... -
Shell
:: SystemCommand # notify(*opts) -> String (6203.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Shell
:: SystemCommand # notify(*opts) {|message| . . . } -> String (6203.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Shellwords
. # shellsplit(line) -> [String] (6203.0) -
Bourne シェルの単語分割規則に従った空白区切りの単語分割を行い、 単語 (文字列) の配列を返します。
...。
@return 分割結果の各文字列を要素とする配列を返します。
@raise ArgumentError 引数の中に対でないシングルクォートまたはダブル
クォートが現れた場合に発生します。
例:
require 'shellwords'
p Shellwords.shellwords(%q{......foo bar "foo bar"\ baz 'foo bar' })
# => ["foo", "bar", "foo bar baz", "foo bar"]
p Shellwords.shellwords(%q{ A B C "D E F" "G","H I" })
# => ["A", "B", "C", "D E F", "G,H I"]... -
Shell
:: CommandProcessor # ftype(filename) -> String (6202.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param filename ファイル名を表す文字列を指定します。
@see File.ftype...