* tbm <tbm@cyrius.com> [2004-09-18 17:44]: > +bootdevline=`grep "^\ \+8\ \+$bootmin\ \+" /proc/partitions | sed 's/.* //'` Thiemo pointed out in private communication that sed 's/.* //' will not work under 2.4. The following will work under both 2.4 and 2.6: sed -e "s/ \+/ /g" | cut -d " " -f5 -- Martin Michlmayr tbm@cyrius.com