summaryrefslogtreecommitdiff
path: root/xpipe/debian/control
blob: f4d96458715cc672b337a4d1ad8b92d6dddf7117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Source: xpipe
Section: utils
Priority: optional
Maintainer: B. Stack <bgstack15@gmail.com>
Build-Depends: debhelper-compat (= 12)
Standards-Version: 4.5.0
Homepage: https://github.com/jschauma/xpipe

Package: xpipe
Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: split stdin and pass in chunks
 A utility that takes stdin and splits by the given
 number of bytes, lines, or a matching pattern, and
 passes it to a given command repeatedly. Think of it
 as a combo of split, tee, and xargs.
 
bgstack15