LDP/LDP/guide/docbook/abs-guide/behead.sh

51 lines
1.7 KiB
Bash
Raw Normal View History

2001-07-10 14:25:50 +00:00
#! /bin/sh
2012-04-04 22:51:18 +00:00
# Strips off the header from a mail/News message i.e. till the first
#+ empty line.
# Author: Mark Moraes, University of Toronto
2001-07-10 14:25:50 +00:00
2001-09-04 13:27:31 +00:00
# ==> These comments added by author of this document.
2001-07-10 14:25:50 +00:00
if [ $# -eq 0 ]; then
2008-11-23 22:43:47 +00:00
# ==> If no command-line args present, then works on file redirected to stdin.
2001-07-10 14:25:50 +00:00
sed -e '1,/^$/d' -e '/^[ ]*$/d'
# --> Delete empty lines and all lines until
# --> first one beginning with white space.
else
2008-11-23 22:43:47 +00:00
# ==> If command-line args present, then work on files named.
2001-07-10 14:25:50 +00:00
for i do
sed -e '1,/^$/d' -e '/^[ ]*$/d' $i
# --> Ditto, as above.
done
fi
2009-03-24 18:46:05 +00:00
exit
2002-04-01 16:04:17 +00:00
# ==> Exercise: Add error checking and other options.
2001-09-04 13:27:31 +00:00
# ==>
# ==> Note that the small sed script repeats, except for the arg passed.
# ==> Does it make sense to embed it in a function? Why or why not?
2009-03-24 18:46:05 +00:00
/*
* Copyright University of Toronto 1988, 1989.
* Written by Mark Moraes
*
* Permission is granted to anyone to use this software for any purpose on
* any computer system, and to alter it and redistribute it freely, subject
* to the following restrictions:
*
* 1. The author and the University of Toronto are not responsible
* for the consequences of use of this software, no matter how awful,
* even if they arise from flaws in it.
*
* 2. The origin of this software must not be misrepresented, either by
* explicit claim or by omission. Since few users ever read sources,
* credits must appear in the documentation.
*
* 3. Altered versions must be plainly marked as such, and must not be
* misrepresented as being the original software. Since few users
* ever read sources, credits must appear in the documentation.
*
* 4. This notice may not be removed or altered.
*/