diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /config/run-and-prefix.py | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'config/run-and-prefix.py')
-rw-r--r-- | config/run-and-prefix.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/config/run-and-prefix.py b/config/run-and-prefix.py new file mode 100644 index 0000000000..d78fceb7ff --- /dev/null +++ b/config/run-and-prefix.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# This script runs a process and prefixes its output with. +# Usage: run-and-prefix.py prefix command arg0 argv1... + +from __future__ import absolute_import, print_function, unicode_literals + +import os +import subprocess +import sys + +sys.stdout = os.fdopen(sys.stdout.fileno(), "wb", 0) +sys.stderr = os.fdopen(sys.stderr.fileno(), "wb", 0) + +prefix = sys.argv[1].encode("utf-8") +args = sys.argv[2:] + +p = subprocess.Popen( + args, + bufsize=0, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + stdin=sys.stdin.fileno(), + close_fds=False, +) + +while True: + data = p.stdout.readline() + + if data == b"": + break + + sys.stdout.write(b"%s> %s" % (prefix, data)) + +sys.exit(p.wait()) |