comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/share/gettext/po/insert-header.sin @ 68:5028fdace37b

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 16:23:26 -0400
parents
children
comparison
equal deleted inserted replaced
67:0e9998148a16 68:5028fdace37b
1 # Sed script that inserts the file called HEADER before the header entry.
2 #
3 # Copyright (C) 2001 Free Software Foundation, Inc.
4 # Written by Bruno Haible <bruno@clisp.org>, 2001.
5 # This file is free software; the Free Software Foundation gives
6 # unlimited permission to use, copy, distribute, and modify it.
7 #
8 # At each occurrence of a line starting with "msgid ", we execute the following
9 # commands. At the first occurrence, insert the file. At the following
10 # occurrences, do nothing. The distinction between the first and the following
11 # occurrences is achieved by looking at the hold space.
12 /^msgid /{
13 x
14 # Test if the hold space is empty.
15 s/m/m/
16 ta
17 # Yes it was empty. First occurrence. Read the file.
18 r HEADER
19 # Output the file's contents by reading the next line. But don't lose the
20 # current line while doing this.
21 g
22 N
23 bb
24 :a
25 # The hold space was nonempty. Following occurrences. Do nothing.
26 x
27 :b
28 }