Hackfut Security File Manager
Current Path:
/opt/td-agent/embedded/share/man/man1
opt
/
td-agent
/
embedded
/
share
/
man
/
man1
/
📁
..
📄
clusterdb.1
(5.77 KB)
📄
createdb.1
(7.26 KB)
📄
createlang.1
(5.3 KB)
📄
createuser.1
(9.42 KB)
📄
dropdb.1
(5.25 KB)
📄
droplang.1
(5.1 KB)
📄
dropuser.1
(5.23 KB)
📄
ecpg.1
(5.04 KB)
📄
erb.1
(3.24 KB)
📄
initdb.1
(10.26 KB)
📄
irb.1
(3.43 KB)
📄
libtool.1
(9.63 KB)
📄
libtoolize.1
(2.53 KB)
📄
lzcat.1
(63.13 KB)
📄
lzma.1
(63.13 KB)
📄
lzmadec.1
(2.77 KB)
📄
lzmainfo.1
(1.22 KB)
📄
makedepend.1
(9.3 KB)
📄
oid2name.1
(8.64 KB)
📄
pg_archivecleanup.1
(5.43 KB)
📄
pg_basebackup.1
(17.68 KB)
📄
pg_config.1
(6.11 KB)
📄
pg_controldata.1
(2.22 KB)
📄
pg_ctl.1
(13.54 KB)
📄
pg_dump.1
(35 KB)
📄
pg_dumpall.1
(13.76 KB)
📄
pg_isready.1
(4.56 KB)
📄
pg_receivexlog.1
(8.9 KB)
📄
pg_recvlogical.1
(8.03 KB)
📄
pg_resetxlog.1
(8.58 KB)
📄
pg_restore.1
(22 KB)
📄
pg_rewind.1
(7.08 KB)
📄
pg_standby.1
(10.33 KB)
📄
pg_test_fsync.1
(2.86 KB)
📄
pg_test_timing.1
(9.74 KB)
📄
pg_upgrade.1
(22.02 KB)
📄
pg_xlogdump.1
(4.58 KB)
📄
pgbench.1
(36.58 KB)
📄
pkg-config.1
(18.73 KB)
📄
postgres.1
(21.49 KB)
📄
postmaster.1
(1.47 KB)
📄
psql.1
(101.06 KB)
📄
reindexdb.1
(6.55 KB)
📄
ri.1
(5.22 KB)
📄
ruby.1
(18.51 KB)
📄
unlzma.1
(63.13 KB)
📄
unxz.1
(63.13 KB)
📄
vacuumdb.1
(8.15 KB)
📄
vacuumlo.1
(4.19 KB)
📄
xml2-config.1
(1.15 KB)
📄
xmlcatalog.1
(8.2 KB)
📄
xmllint.1
(13.15 KB)
📄
xsltproc.1
(8.06 KB)
📄
xz.1
(63.13 KB)
📄
xzcat.1
(63.13 KB)
📄
xzdec.1
(2.77 KB)
Editing: irb.1
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>. .Dd November 15, 2012 .Dt IRB \&1 "Ruby Programmer's Reference Guide" .Os UNIX .Sh NAME .Nm irb .Nd Interactive Ruby Shell .Sh SYNOPSIS .Nm .Op Fl -version .Op Fl dfm .Op Fl I Ar directory .Op Fl r Ar library .Op Fl - Ns Oo no Oc Ns inspect .Op Fl - Ns Oo no Oc Ns readline .Op Fl -prompt Ar mode .Op Fl -prompt-mode Ar mode .Op Fl -inf-ruby-mode .Op Fl -simple-prompt .Op Fl -noprompt .Op Fl -tracer .Op Fl -back-trace-limit Ar n .Op Fl -irb_debug Ar n .Op Fl - .Op program_file .Op argument ... .Pp .Sh DESCRIPTION .Nm is the REPL(read-eval-print loop) environment for Ruby programs. .Pp .Sh OPTIONS .Bl -tag -width "1234567890123" -compact .Pp .It Fl -version Prints the version of .Nm . .Pp .It Fl E Ar external Ns Op : Ns Ar internal .It Fl -encoding Ar external Ns Op : Ns Ar internal Same as `ruby -E' . Specifies the default value(s) for external encodings and internal encoding. Values should be separated with colon (:). .Pp You can omit the one for internal encodings, then the value .Pf ( Li "Encoding.default_internal" ) will be nil. .Pp .It Fl I Ar path Same as `ruby -I' . Specifies .Li $LOAD_PATH directory .Pp .It Fl U Same as `ruby -U' . Sets the default value for internal encodings .Pf ( Li "Encoding.default_internal" ) to UTF-8. .Pp .It Fl d Same as `ruby -d' . Sets .Li $DEBUG to true. .Pp .It Fl f Suppresses read of .Pa ~/.irbrc . .Pp .It Fl h .It Fl -help Prints a summary of the options. .Pp .It Fl m Bc mode (load mathn, fraction or matrix are available) .Pp .It Fl r Ar library Same as `ruby -r'. Causes irb to load the library using require. .Pp .It Fl -inspect Uses `inspect' for output (default except for bc mode) .Pp .It Fl -noinspect Doesn't use inspect for output .Pp .It Fl -readline Uses Readline extension module. .Pp .It Fl -noreadline Doesn't use Readline extension module. .Pp .It Fl -prompt Ar mode .It Fl -prompt-mode Ar mode Switch prompt mode. Pre-defined prompt modes are `default', `simple', `xmp' and `inf-ruby'. .Pp .It Fl -inf-ruby-mode Uses prompt appropriate for inf-ruby-mode on emacs. Suppresses --readline. .Pp .It Fl -simple-prompt Makes prompts simple. .Pp .It Fl -noprompt No prompt mode. .Pp .It Fl -tracer Displays trace for each execution of commands. .Pp .It Fl -back-trace-limit Ar n Displays backtrace top .Ar n and tail .Ar n Ns . The default value is 16. .Pp .It Fl -irb_debug Ar n Sets internal debug level to n (not for popular use) .Pp .El .Pp .Sh ENVIRONMENT .Bl -tag -compact .It Ev IRBRC .Pp .El .Pp Also .Nm depends on same variables as .Xr ruby 1 . .Pp .Sh FILES .Bl -tag -compact .It Pa ~/.irbrc Personal irb initialization. .Pp .El .Pp .Sh EXAMPLES .Dl % irb .Dl irb(main):001:0> Ic 1 + 1 .Dl 2 .Dl irb(main):002:0> Ic def t(x) .Dl irb(main):003:1> Ic x+1 .Dl irb(main):004:1> Ic end .Dl => :t .Dl irb(main):005:0> Ic t(3) .Dl => 4 .Dl irb(main):006:0> Ic if t(3) == 4 .Dl irb(main):007:1> Ic p :ok .Dl irb(main):008:1> Ic end .Dl :ok .Dl => :ok .Dl irb(main):009:0> Ic quit .Dl % .Pp .Sh SEE ALSO .Xr ruby 1 . .Pp .Sh REPORTING BUGS .Bl -bullet .It Security vulnerabilities should be reported via an email to .Mt security@ruby-lang.org . Reported problems will be published after being fixed. .Pp .It Other bugs and feature requests can be reported via the Ruby Issue Tracking System .Pq Lk https://bugs.ruby-lang.org/ . Do not report security vulnerabilities via this system because it publishes the vulnerabilities immediately. .El .Sh AUTHORS Written by Keiju ISHITSUKA.
Upload File
Create Folder