X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=envsetup.sh;h=0661fe66fa49ed48830383eb771c3b83d6a06ec7;hb=refs%2Fheads%2Fkitkat-x86;hp=f86081d0533b96f44898398c8afc62632077f1ac;hpb=91efe6bbb7bd05038b7ec4e713b70582b7dd53a2;p=android-x86%2Fbuild.git diff --git a/envsetup.sh b/envsetup.sh index f86081d05..0661fe66f 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -803,7 +803,7 @@ function qpid() { local EXE="$1" if [ "$EXE" ] ; then - qpid | grep "$prepend$EXE$append" + qpid | \grep "$prepend$EXE$append" else adb shell ps \ | tr -d '\r' \ @@ -824,7 +824,7 @@ function pid() if [ "$EXE" ] ; then local PID=`adb shell ps \ | tr -d '\r' \ - | grep "$prepend$EXE$append" \ + | \grep "$prepend$EXE$append" \ | sed -e 's/^[^ ]* *\([0-9]*\).*$/\1/'` echo "$PID" else @@ -930,7 +930,7 @@ function gdbclient() if [[ ! "$PID" =~ ^[0-9]+$ ]] ; then # that likely didn't work because of returning multiple processes # try again, filtering by root processes (don't contain colon) - PID=`adb shell ps | grep $3 | grep -v ":" | awk '{print $2}'` + PID=`adb shell ps | \grep $3 | \grep -v ":" | awk '{print $2}'` if [[ ! "$PID" =~ ^[0-9]+$ ]] then echo "Couldn't resolve '$3' to single PID"