.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "PARCAT 1" .TH PARCAT 1 2024-03-22 20240222 parallel .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME parcat \- cat files or fifos in parallel .SH SYNOPSIS .IX Header "SYNOPSIS" \&\fBparcat\fR [\-\-rm] [\-#] file(s) [\-#] file(s) .SH DESCRIPTION .IX Header "DESCRIPTION" GNU \fBparcat\fR reads files or fifos in parallel. It writes full lines so there will be no problem with mixed-half-lines which you risk if you use: .PP .Vb 1 \& (cat file1 & cat file2 &) | ... .Ve .PP It is faster than doing: .PP .Vb 1 \& parallel \-j0 \-\-lb cat ::: file* .Ve .PP Arguments can be given on the command line or passed in on stdin (standard input). .SH OPTIONS .IX Header "OPTIONS" .IP \-\fB#\fR 9 .IX Item "-#" Arguments following this will be sent to the file descriptor \fB#\fR. E.g. .Sp .Vb 1 \& parcat \-1 stdout1 stdout2 \-2 stderr1 stderr2 .Ve .Sp will send \fIstdout1\fR and \fIstdout2\fR to stdout (standard output = file descriptor 1), and send \fIstderr1\fR and \fIstderr2\fR to stderr (standard error = file descriptor 2). .IP \-\-rm 9 .IX Item "--rm" Remove files after opening. As soon as the files are opened, unlink the files. .SH EXAMPLES .IX Header "EXAMPLES" .SS "Simple line buffered output" .IX Subsection "Simple line buffered output" \&\fBtraceroute\fR will often print half a line. If run in parallel, two instances may half-lines of their output. This can be avoided by saving the output to a fifo and then using \fBparcat\fR to read the two fifos in parallel: .PP .Vb 4 \& mkfifo freenetproject.org.fifo tange.dk.fifo \& traceroute freenetproject.org > freenetproject.org.fifo & \& traceroute tange.dk > tange.dk.fifo & \& parcat \-\-rm *fifo .Ve .SH "REPORTING BUGS" .IX Header "REPORTING BUGS" GNU \fBparcat\fR is part of GNU \fBparallel\fR. Report bugs to . .SH AUTHOR .IX Header "AUTHOR" Copyright (C) 2016\-2024 Ole Tange, http://ole.tange.dk and Free Software Foundation, Inc. .SH LICENSE .IX Header "LICENSE" This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or at your option any later version. .PP This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. .PP You should have received a copy of the GNU General Public License along with this program. If not, see . .SS "Documentation license I" .IX Subsection "Documentation license I" Permission is granted to copy, distribute and/or modify this documentation under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the file LICENSES/GFDL\-1.3\-or\-later.txt. .SS "Documentation license II" .IX Subsection "Documentation license II" You are free: .IP "\fBto Share\fR" 9 .IX Item "to Share" to copy, distribute and transmit the work .IP "\fBto Remix\fR" 9 .IX Item "to Remix" to adapt the work .PP Under the following conditions: .IP \fBAttribution\fR 9 .IX Item "Attribution" You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). .IP "\fBShare Alike\fR" 9 .IX Item "Share Alike" If you alter, transform, or build upon this work, you may distribute the resulting work only under the same, similar or a compatible license. .PP With the understanding that: .IP \fBWaiver\fR 9 .IX Item "Waiver" Any of the above conditions can be waived if you get permission from the copyright holder. .IP "\fBPublic Domain\fR" 9 .IX Item "Public Domain" Where the work or any of its elements is in the public domain under applicable law, that status is in no way affected by the license. .IP "\fBOther Rights\fR" 9 .IX Item "Other Rights" In no way are any of the following rights affected by the license: .RS 9 .IP \(bu 9 Your fair dealing or fair use rights, or other applicable copyright exceptions and limitations; .IP \(bu 9 The author's moral rights; .IP \(bu 9 Rights other persons may have either in the work itself or in how the work is used, such as publicity or privacy rights. .RE .RS 9 .RE .IP \fBNotice\fR 9 .IX Item "Notice" For any reuse or distribution, you must make clear to others the license terms of this work. .PP A copy of the full license is included in the file as LICENCES/CC\-BY\-SA\-4.0.txt .SH DEPENDENCIES .IX Header "DEPENDENCIES" GNU \fBparcat\fR uses Perl. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBcat\fR(1), \fBparallel\fR(1)