Commit e744994 1 parent 3523acb commit e744994 Copy full SHA for e744994
File tree 5 files changed +18
-1
lines changed
5 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Build a network of processes and connecting pipes - and have them act like a single process.
5
5
6
- [ ![ Build Status] ( https://secure.travis-ci.org/flonatel/pipexec.png )] ( http://travis-ci.org/flonatel/pipexec )
6
+ [ ![ Build Status] ( https://github.com/flonatel/pipexec/actions/workflows/compile-check.yml/badge.svg )
7
+ [ ![ Code Check] ( https://github.com/flonatel/pipexec/actions/workflows/compile-check.yml/badge.svg )
7
8
[ ![ Release] ( https://img.shields.io/github/release/flonatel/pipexec.svg )] ( https://github.com/flonatel/pipexec/releases/latest )
8
9
[ ![ License] ( https://img.shields.io/github/license/flonatel/pipexec.svg )] ( #license )
9
10
[ ![ Issues] ( https://img.shields.io/github/issues/flonatel/pipexec.svg )] ( https://github.com/flonatel/pipexec/issues )
@@ -150,3 +151,9 @@ install pipexec with the distribution's package manager:
150
151
151
152
There will be three binaries in the bin directory: pipexec, ptee and
152
153
peet. You can copy / install them as you need.
154
+
155
+ # Copyright #
156
+
157
+ copyright 2015,2022 by Andreas Florath
158
+
159
+ License: see LICENSE file
Original file line number Diff line number Diff line change 3
3
*
4
4
* eet (a reverse tee) for pipes / fds.
5
5
* The program reads from different file descriptors and writes to one.
6
+ *
7
+ * Copyright 2015,2022 by Andreas Florath
8
+ * SPDX-License-Identifier: GPL-2.0-or-later
6
9
*/
7
10
8
11
#define _POSIX_C_SOURCE 200809L
Original file line number Diff line number Diff line change
1
+ // Copyright 2015,2022 by Andreas Florath
2
+ // SPDX-License-Identifier: GPL-2.0-or-later
3
+
1
4
#include "src/pipe_info.h"
2
5
#include "src/logging.h"
3
6
Original file line number Diff line number Diff line change 3
3
*
4
4
* Build up a directed graph of processes and pipes.
5
5
*
6
+ * Copyright 2015,2022 by Andreas Florath
7
+ * SPDX-License-Identifier: GPL-2.0-or-later
6
8
*/
7
9
#define _POSIX_C_SOURCE 200809L
8
10
#define _DEFAULT_SOURCE
Original file line number Diff line number Diff line change 5
5
* This is like the 'normal' tee - except that it does not output to
6
6
* different files but to differend fds.
7
7
*
8
+ * Copyright 2015,2022 by Andreas Florath
9
+ * SPDX-License-Identifier: GPL-2.0-or-later
8
10
*/
9
11
10
12
#define _POSIX_C_SOURCE 200809L
You can’t perform that action at this time.
0 commit comments