180件ヒット
[101-180件を表示]
(0.037秒)
ライブラリ
- ビルトイン (12)
- etc (96)
-
shell
/ filter (12) -
webrick
/ httpauth / htdigest (12) -
webrick
/ httpauth / htpasswd (24) -
webrick
/ httpauth / userdb (24)
クラス
-
Etc
:: Group (12) -
Etc
:: Passwd (84) -
Shell
:: Filter (12) - String (12)
-
WEBrick
:: HTTPAuth :: Htdigest (12) -
WEBrick
:: HTTPAuth :: Htpasswd (24)
モジュール
キーワード
- comment (12)
- crypt (12)
-
delete
_ passwd (12) - dir (12)
- gecos (12)
-
get
_ passwd (36) -
make
_ passwd (12) - name (12)
- shell (12)
-
to
_ a (6) -
to
_ s (6) - uclass (12)
検索結果
先頭5件
-
Etc
:: Passwd # comment -> String (3102.0) -
コメント(文字列)を返します。このメンバはシステム依存です。
コメント(文字列)を返します。このメンバはシステム依存です。 -
Etc
:: Passwd # dir -> String (3102.0) -
このユーザのホームディレクトリを表すパスを返します。
このユーザのホームディレクトリを表すパスを返します。 -
Etc
:: Passwd # gecos -> String (3102.0) -
このユーザのフルネーム等の詳細情報を返します。
このユーザのフルネーム等の詳細情報を返します。
様々な構造化された情報を返す Unix システムも存在しますが、それはシステム依存です。 -
Etc
:: Passwd # name -> String (3102.0) -
このユーザのログイン名を返します。
このユーザのログイン名を返します。 -
Etc
:: Passwd # shell -> String (3102.0) -
このユーザのログインシェルを返します。
このユーザのログインシェルを返します。 -
Etc
:: Passwd # uclass -> String (3102.0) -
ユーザアクセスクラス(文字列)を返します。このメンバはシステム依存です。
ユーザアクセスクラス(文字列)を返します。このメンバはシステム依存です。 -
Shell
:: Filter # to _ a -> [String] (108.0) -
実行結果を文字列の配列で返します。
...実行結果を文字列の配列で返します。
require 'shell'
Shell.def_system_command("wc")
sh = Shell.new
puts sh.cat("/etc/passwd").to_a... -
Shell
:: Filter # to _ s -> String (108.0) -
実行結果を文字列で返します。
...実行結果を文字列で返します。
require 'shell'
Shell.def_system_command("wc")
sh = Shell.new
sh.transact {
puts (cat("/etc/passwd") | wc("-l")).to_s
}...