Special symbols in `uname` shielding.
This commit is contained in:
parent
60652d7b91
commit
6a840c1c15
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
NICE_CMD="nice -n 19 ionice -c2"
|
NICE_CMD="nice -n 19 ionice -c2"
|
||||||
|
|
||||||
REVISION=`kernel-config list | grep \*$ | cut -d" " -f6 | cut -d- -f2-8`
|
REVISION=`kernel-config list | grep \*$ | cut -d" " -f6 | cut -d- -f2-8 | sed 's~\\+~\\\\+~g'`
|
||||||
[ "" == "$REVISION" ] && echo "No appropriate kernel revision found ;-(" && exit -1
|
[ "" == "$REVISION" ] && echo "No appropriate kernel revision found ;-(" && exit -1
|
||||||
|
|
||||||
UNAME=`uname -r`
|
UNAME=`uname -r | sed 's~\\+~\\\\+~g'`
|
||||||
echo UNAME=$UNAME
|
echo UNAME=$UNAME
|
||||||
|
|
||||||
# remounting file systems ro->rw
|
# remounting file systems ro->rw
|
||||||
|
|
Loading…
Reference in New Issue