Searched refs:sh_quote_word (Results 1 – 2 of 2) sorted by relevance
661 quoted_word = base_utils.sh_quote_word(text)674 command = 'echo ' + base_utils.sh_quote_word(text)675 nested_command = 'echo ' + base_utils.sh_quote_word(command)
875 command = ' '.join([sh_quote_word(arg) for arg in command])877 command = ' '.join([command] + [sh_quote_word(arg) for arg in args])1890 def sh_quote_word(text, whitelist=SHELL_QUOTING_WHITELIST): function