summaryrefslogtreecommitdiffstats
path: root/po/de/man2/pipe.2.po
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
commit932e4432596447eb9331cc2a2bb74a26a35b4efc (patch)
tree95161711ea07fd64f0c82d6e7943024c033dd5a8 /po/de/man2/pipe.2.po
parentAdding debian version 4.22.0-1. (diff)
downloadmanpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.tar.xz
manpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.zip
Merging upstream version 4.23.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'po/de/man2/pipe.2.po')
-rw-r--r--po/de/man2/pipe.2.po145
1 files changed, 129 insertions, 16 deletions
diff --git a/po/de/man2/pipe.2.po b/po/de/man2/pipe.2.po
index 9a989d02..abeeba12 100644
--- a/po/de/man2/pipe.2.po
+++ b/po/de/man2/pipe.2.po
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n 4.16.0\n"
-"POT-Creation-Date: 2024-03-01 17:03+0100\n"
-"PO-Revision-Date: 2023-08-28 20:49+0200\n"
+"POT-Creation-Date: 2024-06-01 06:08+0200\n"
+"PO-Revision-Date: 2024-06-01 14:02+0200\n"
"Last-Translator: Mario Blättermann <mario.blaettermann@gmail.com>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
"Language: de\n"
@@ -27,16 +27,16 @@ msgid "pipe"
msgstr "pipe"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2023-10-31"
-msgstr "31. Oktober 2023"
+msgid "2024-05-02"
+msgstr "2. Mai 2024"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable
#, no-wrap
-msgid "Linux man-pages 6.06"
-msgstr "Linux man-pages 6.06"
+msgid "Linux man-pages 6.8"
+msgstr "Linux man-pages 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -566,13 +566,13 @@ msgid "Program source"
msgstr "Programmquelltext"
#. type: Plain text
-#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
-#: opensuse-tumbleweed
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid ""
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>string.hE<gt>\n"
+"#include E<lt>sys/types.hE<gt>\n"
"#include E<lt>sys/wait.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"\\&\n"
@@ -621,6 +621,7 @@ msgstr ""
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>string.hE<gt>\n"
+"#include E<lt>sys/types.hE<gt>\n"
"#include E<lt>sys/wait.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"\\&\n"
@@ -864,16 +865,122 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-07-30"
-msgstr "30. Juli 2023"
+msgid "2023-10-31"
+msgstr "31. Oktober 2023"
+
+#. type: TH
+#: fedora-40 mageia-cauldron
+#, no-wrap
+msgid "Linux man-pages 6.06"
+msgstr "Linux man-pages 6.06"
+
+#. type: Plain text
+#: fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>string.hE<gt>\n"
+"#include E<lt>sys/wait.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int pipefd[2];\n"
+" char buf;\n"
+" pid_t cpid;\n"
+"\\&\n"
+" if (argc != 2) {\n"
+" fprintf(stderr, \"Usage: %s E<lt>stringE<gt>\\en\", argv[0]);\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (pipe(pipefd) == -1) {\n"
+" perror(\"pipe\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" cpid = fork();\n"
+" if (cpid == -1) {\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (cpid == 0) { /* Child reads from pipe */\n"
+" close(pipefd[1]); /* Close unused write end */\n"
+"\\&\n"
+" while (read(pipefd[0], &buf, 1) E<gt> 0)\n"
+" write(STDOUT_FILENO, &buf, 1);\n"
+"\\&\n"
+" write(STDOUT_FILENO, \"\\en\", 1);\n"
+" close(pipefd[0]);\n"
+" _exit(EXIT_SUCCESS);\n"
+"\\&\n"
+" } else { /* Parent writes argv[1] to pipe */\n"
+" close(pipefd[0]); /* Close unused read end */\n"
+" write(pipefd[1], argv[1], strlen(argv[1]));\n"
+" close(pipefd[1]); /* Reader will see EOF */\n"
+" wait(NULL); /* Wait for child */\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
+msgstr ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>string.hE<gt>\n"
+"#include E<lt>sys/wait.hE<gt>\n"
+"#include E<lt>unistd.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int pipefd[2];\n"
+" char buf;\n"
+" pid_t cpid;\n"
+"\\&\n"
+" if (argc != 2) {\n"
+" fprintf(stderr, \"Usage: %s E<lt>stringE<gt>\\en\", argv[0]);\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (pipe(pipefd) == -1) {\n"
+" perror(\"pipe\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" cpid = fork();\n"
+" if (cpid == -1) {\n"
+" perror(\"fork\");\n"
+" exit(EXIT_FAILURE);\n"
+" }\n"
+"\\&\n"
+" if (cpid == 0) { /* Kindprozess liest aus Pipe */\n"
+" close(pipefd[1]); /* nicht verwendetes Schreib-Ende schließen */\n"
+"\\&\n"
+" while (read(pipefd[0], &buf, 1) E<gt> 0)\n"
+" write(STDOUT_FILENO, &buf, 1);\n"
+"\\&\n"
+" write(STDOUT_FILENO, \"\\en\", 1);\n"
+" close(pipefd[0]);\n"
+" _exit(EXIT_SUCCESS);\n"
+"\\&\n"
+" } else { /* Elternprozess schreibt argv[1] in die Pipe */\n"
+" close(pipefd[0]); /* Nicht verwendetes Lese-Ende schließen */\n"
+" write(pipefd[1], argv[1], strlen(argv[1]));\n"
+" close(pipefd[1]); /* der Lesende wird EOF sehen */\n"
+" wait(NULL); /* Auf \"das Kind\" warten */\n"
+" exit(EXIT_SUCCESS);\n"
+" }\n"
+"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-rawhide
#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Linux man-pages 6.05.01"
+msgid "Linux man-pages 6.7"
+msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-leap-15-6
@@ -886,3 +993,9 @@ msgstr "30. März 2023"
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Linux-Handbuchseiten 6.04"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr "Linux man-pages (unveröffentlicht)"