#!/bin/sh
seq 125 189 | while read a ; do
b=$(expr $a + 1)
cat <<EOF | bzip2 > v2.1/patch-2.1.$b.bz2
--- linux-2.1.$a/Makefile Mon Oct 12 00:00:00 1998
+++ linux-2.1.$b/Makefile Mon Oct 12 00:00:00 1998
@@ -3 +3 @@
-SUBLEVEL = $a
+SUBLEVEL = $b
EOF
cat <<EOF | gzip > v2.1/patch-2.1.$b.gz
--- linux-2.1.$a/Makefile Mon Oct 12 00:00:00 1998
+++ linux-2.1.$b/Makefile Mon Oct 12 00:00:00 1998
@@ -3 +3 @@
-SUBLEVEL = $a
+SUBLEVEL = $b
EOF
done
There. All scripts are now happy. ;-)
-- Matthias Urlichs | noris network GmbH | smurf@noris.de | ICQ: 20193661- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/