On Thu, Apr 21, 2005 at 04:47:18PM -0400, James Cloos wrote:
> I've been using a script grabbed from here for some time to alter
> the From: line on mail sent to bk-head-commits and bk-24-commits
> to show the author's name and email rather than LKML's address.
>
> Below is my script for doing the same with git commit emails.
Ages ago I grabbed a different one for fixing up BK. Here's what I've
got now that fixes up both (and munges the date on git, which may or may
not turn out to be useful).
#!/bin/sh
TMP=`mktemp /tmp/setfrom.XXXXXX`
cat > $TMP
## Old BitKeeper logic
from=`grep '^ChangeSet' $TMP | head -1 | awk '{print $NF}'`
## New git logic
author=`sed -n '/^author /p' < $TMP | head -n 1`
if [ ! -z "$author" ]; then
from=`echo $author | sed 's/author \(.*>\).*/\1/'`
date=`echo $author | sed 's/author.*> //'`
fi
if test -n "$from" -a -n "$date"; then
formail -I "From: $from" -I "Date: `date -d "$date" -R`" < $TMP
else
if test -n "$from"; then
formail -I "From: $from" < $TMP
else
cat $TMP
fi
fi
rm $TMP
--
Tom Rini
http://gate.crashing.org/~trini/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]