]> git.ozlabs.org Git - next-scripts/blob - send_email
Merge commit '87f7336193d1'
[next-scripts] / send_email
1 #!/bin/bash
2
3 TARGET=$HOME/linux-next-$$.email
4
5 to="$1"
6 cc="$2"
7 subject="$3"
8
9 (
10         cat <<EOF
11 To: $to
12 Cc: $cc
13 Subject: $subject
14
15 FIXME: Add owner of second tree to To:
16        Add author(s)/SOB of conflicting commits.
17
18 EOF
19         cat
20 ) > $TARGET
21
22 gvim $TARGET
23
24 echo "When you're finished editing you need to send $TARGET"
25
26 exit 0