diff options
author | Jim Meyering <jim@meyering.net> | 2000-03-24 06:39:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-03-24 06:39:01 +0000 |
commit | a0fc5566dd5bb2e1dfab15d82d378be52744bcdd (patch) | |
tree | d0b188962b325f219b63084cac912fd0f3185f05 /lib/ref-del.sed.in | |
parent | e0ca9372fc87a5fd07c72249e2736876b3f59a34 (diff) | |
download | coreutils-a0fc5566dd5bb2e1dfab15d82d378be52744bcdd.tar.xz |
*** empty log message ***
Diffstat (limited to 'lib/ref-del.sed.in')
-rw-r--r-- | lib/ref-del.sed.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/ref-del.sed.in b/lib/ref-del.sed.in new file mode 100644 index 000000000..613cf37f3 --- /dev/null +++ b/lib/ref-del.sed.in @@ -0,0 +1,26 @@ +# Remove this package from a list of references stored in a text file. +# +# Copyright (C) 2000 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU Library General Public License as published +# by the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# USA. +# +# Written by Bruno Haible <haible@clisp.cons.org>. +# +/^# Packages using this file: / { + s/# Packages using this file:// + s/ @PACKAGE@ / / + s/^/# Packages using this file:/ +} |