[Fix] awk regex for all php console based commands

This commit is contained in:
Laurent Goussard
2014-07-17 18:40:19 +02:00
parent 03869b1157
commit 97402d4ab8
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -40,7 +40,7 @@
_console_get_command_list () {
php console | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
php console | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }'
}
_console () {