Re: Script to help users to report a BUG

From: Michał Piotrowski
Date: Fri Jun 24 2005 - 04:03:34 EST


Hi,
Paolo Ciarrocchi wrote:

One comment Michal,
I don't like the selection of the editor, I still prefer the idea
behind the following patch (that doesn't apply anymore)

-echo "[2.] Full description of the problem/report: (press Return when done)"
+echo "[2.] Full description of the problem/report: (end with a line
+containing only a '.')"
echo -e "\n[2.] Full description of the problem/report:" >> $ORT_F
read TXT
echo "$TXT" >> $ORT_F
+while [ "$TXT" != "." ] ; do
+ read TXT
+ echo "$TXT" >> $ORT_F
+done

Do see you the idea ? We don't need an editor to file the BUG.
My original idea was to have a very simple and efficient script.

Hope it helps.



Good idea (for me). Randy what do you think about it?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/