| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 1 | #!/bin/sh - |
| 2 | # |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 3 | # bashbug - create a bug report and mail it to the bug address |
| 4 | # |
| 5 | # The bug address depends on the release status of the shell. Versions |
| 6 | # with status `alpha' or `beta' mail bug reports to chet@po.cwru.edu. |
| 7 | # Other versions send mail to bug-bash@prep.ai.mit.edu. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 8 | # |
| 9 | # configuration section: |
| 10 | # these variables are filled in by the make target in cpp-Makefile |
| 11 | # |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 12 | MACHINE="!MACHINE!" |
| 13 | OS="!OS!" |
| 14 | CC="!CC!" |
| 15 | CFLAGS="!CFLAGS!" |
| 16 | RELEASE="!RELEASE!" |
| 17 | PATCHLEVEL="!PATCHLEVEL!" |
| 18 | RELSTATUS="!RELSTATUS!" |
| 19 | MACHTYPE="!MACHTYPE!" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 20 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 21 | PATH=/bin:/usr/bin:/usr/local/bin:$PATH |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 22 | export PATH |
| 23 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame^] | 24 | TEMP=/tmp/bbug.$$ |
| 25 | |
| 26 | # Figure out how to echo a string without a trailing newline |
| 27 | N=`echo 'hi there\c'` |
| 28 | case "$N" in |
| 29 | *c) n=-n c= ;; |
| 30 | *) n= c='\c' ;; |
| 31 | esac |
| 32 | |
| 33 | BASHTESTERS="bash-testers@po.cwru.edu" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 34 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 35 | case "$RELSTATUS" in |
| 36 | alpha*|beta*) BUGBASH=chet@po.cwru.edu ;; |
| 37 | *) BUGBASH=bug-bash@prep.ai.mit.edu ;; |
| 38 | esac |
| 39 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame^] | 40 | case "$RELSTATUS" in |
| 41 | alpha*|beta*) echo "$0: This is a testing release. Would you like your bug report" |
| 42 | echo "$0: to be sent to the bash-testers mailing list?" |
| 43 | echo $n "$0: Send to bash-testers? $c" |
| 44 | read ans |
| 45 | case "$ans" in |
| 46 | y*|Y*) BUGBASH="${BUGBASH},${BASHTESTERS}" ;; |
| 47 | esac ;; |
| 48 | esac |
| 49 | |
| 50 | BUGADDR="${1-$BUGBASH}" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 51 | |
| 52 | : ${EDITOR=emacs} |
| 53 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 54 | : ${USER=${LOGNAME-`whoami`}} |
| 55 | |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 56 | trap 'rm -f $TEMP $TEMP.x; exit 1' 1 2 3 13 15 |
| 57 | trap 'rm -f $TEMP $TEMP.x' 0 |
| 58 | |
| 59 | UN= |
| 60 | if (uname) >/dev/null 2>&1; then |
| 61 | UN=`uname -a` |
| 62 | fi |
| 63 | |
| 64 | if [ -f /usr/lib/sendmail ] ; then |
| 65 | RMAIL="/usr/lib/sendmail" |
| 66 | elif [ -f /usr/sbin/sendmail ] ; then |
| 67 | RMAIL="/usr/sbin/sendmail" |
| 68 | else |
| 69 | RMAIL=rmail |
| 70 | fi |
| 71 | |
| 72 | cat > $TEMP <<EOF |
| 73 | From: ${USER} |
| 74 | To: ${BUGADDR} |
| 75 | Subject: [50 character or so descriptive subject here (for reference)] |
| 76 | |
| 77 | Configuration Information [Automatically generated, do not change]: |
| 78 | Machine: $MACHINE |
| 79 | OS: $OS |
| 80 | Compiler: $CC |
| 81 | Compilation CFLAGS: $CFLAGS |
| 82 | uname output: $UN |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 83 | Machine Type: $MACHTYPE |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 84 | |
| 85 | Bash Version: $RELEASE |
| 86 | Patch Level: $PATCHLEVEL |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 87 | Release Status: $RELSTATUS |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 88 | |
| 89 | Description: |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 90 | [Detailed description of the problem, suggestion, or complaint.] |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 91 | |
| 92 | Repeat-By: |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 93 | [Describe the sequence of events that causes the problem |
| 94 | to occur.] |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 95 | |
| 96 | Fix: |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 97 | [Description of how to fix the problem. If you don't know a |
| 98 | fix for the problem, don't include this section.] |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 99 | EOF |
| 100 | |
| 101 | chmod u+w $TEMP |
| 102 | cp $TEMP $TEMP.x |
| 103 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 104 | trap '' 2 # ignore interrupts while in editor |
| 105 | |
| 106 | until $EDITOR $TEMP; do |
| 107 | echo "$0: editor \`$EDITOR' exited with nonzero status." |
| 108 | echo "$0: Perhaps it was interrupted." |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame^] | 109 | echo "$0: Type \`y' to give up, and lose your bug report;" |
| 110 | echo "$0: type \`n' to re-enter the editor." |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 111 | echo $n "$0: Do you want to give up? $c" |
| 112 | |
| 113 | read ans |
| 114 | case "$ans" in |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame^] | 115 | [Yy]*) exit 1 ;; |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 116 | esac |
| 117 | done |
| 118 | |
| 119 | trap 'rm -f $TEMP $TEMP.x; exit 1' 2 # restore trap on SIGINT |
| 120 | |
| 121 | if cmp -s $TEMP $TEMP.x |
| 122 | then |
| 123 | echo "File not changed, no bug report submitted." |
| 124 | exit |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 125 | fi |
| 126 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame^] | 127 | echo $n "Send bug report? [y/n] $c" |
| 128 | read ans |
| 129 | case "$ans" in |
| 130 | [Nn]*) exit 0 ;; |
| 131 | esac |
| 132 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 133 | ${RMAIL} $BUGADDR < $TEMP || { |
| 134 | cat $TEMP >> $HOME/dead.bashbug |
| 135 | echo "$0: mail failed: report saved in $HOME/dead.bashbug" >&2 |
| 136 | } |
| 137 | |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 138 | exit 0 |