Chromium Code Reviews| Index: build/android/adb_command_line_functions.sh |
| diff --git a/build/android/adb_command_line_functions.sh b/build/android/adb_command_line_functions.sh |
| index 8a7700911bcc0c5a2371b9f0e6b964a24ea2a6b2..7ea98b09be67f9a163ed459fda5b12b53241cc48 100755 |
| --- a/build/android/adb_command_line_functions.sh |
| +++ b/build/android/adb_command_line_functions.sh |
| @@ -24,7 +24,7 @@ function set_command_line() { |
| if [ $# -eq 0 ] ; then |
| # If nothing specified, print the command line (stripping off "chrome ") |
| - adb shell "cat $CMD_LINE_FILE 2>/dev/null | cut -d ' ' -s -f2-" |
| + adb shell "cat $CMD_LINE_FILE 2>/dev/null" | cut -d ' ' -s -f2- |
|
jbudorick
2015/06/03 00:25:03
just want to make sure that -f2- behaves like -f "
agrieve
2015/06/03 01:26:30
It does (I didn't touch the cut command)
jbudorick
2015/06/03 02:52:57
just asking because it was -f "2-" prior to your f
|
| elif [ $# -eq 1 ] && [ "$1" = '' ] ; then |
| # If given an empty string, delete the command line. |
| set -x |