annotate po/remove-potcdate.sin @ 4887:0ddbd0025174 default tip

added libaudtag. (not used yet.)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 05 May 2010 18:26:06 +0900
parents cb178e5ad177
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 # Sed script that remove the POT-Creation-Date line in the header entry
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 # from a POT file.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 #
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 # The distinction between the first and the following occurrences of the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 # pattern is achieved by looking at the hold space.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 /^"POT-Creation-Date: .*"$/{
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 # Test if the hold space is empty.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 s/P/P/
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 ta
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 # Yes it was empty. First occurrence. Remove the line.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 g
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 d
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 bb
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 :a
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 # The hold space was nonempty. Following occurrences. Do nothing.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 :b
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 }