Searched refs:sh_quote_word (Results 1 – 4 of 4) sorted by relevance
98 cmd = ' '.join(map(utils.sh_quote_word, cmd))
252 ' '.join([utils.sh_quote_word(a) for a in cmd]))292 expr = ' '.join([utils.sh_quote_word(a) for a in self._test_exprs])
671 quoted_word = utils.sh_quote_word(text)684 command = 'echo ' + utils.sh_quote_word(text)685 nested_command = 'echo ' + utils.sh_quote_word(command)
736 command = ' '.join([sh_quote_word(arg) for arg in command])738 command = ' '.join([command] + [sh_quote_word(arg) for arg in args])1629 def sh_quote_word(text, whitelist=SHELL_QUOTING_WHITELIST): function