summaryrefslogtreecommitdiff
path: root/src/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.py')
-rw-r--r--src/common.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common.py b/src/common.py
index 88c3d0ea..81f7b61a 100644
--- a/src/common.py
+++ b/src/common.py
@@ -238,12 +238,16 @@ def shell_split(st):
['toto', '']
>>> shell_split('"toto titi" toto ""')
['toto titi', 'toto', '']
+ >>> shell_split('toto "titi')
+ ['toto', 'titi']
"""
sh = shlex.shlex(st)
ret = []
w = sh.get_token()
while w and w[2] is not None:
ret.append(w[2])
+ if w[1] == len(st):
+ return ret
w = sh.get_token()
return ret
@@ -277,6 +281,8 @@ def find_argument_quoted(pos, text):
1
>>> find_argument_quoted(8, '"toto" "titi tata')
1
+ >>> find_argument_quoted(3, '"toto" "titi tata')
+ 0
>>> find_argument_quoted(18, '"toto" "titi tata" ')
2
"""