Searched refs:effective_command (Results 1 – 1 of 1) sorted by relevance
49 std::stringstream effective_command; in FormattedCommand() local50 effective_command << "Executing `"; in FormattedCommand()52 effective_command << BashEscape(name) << "=" << BashEscape(val) << " "; in FormattedCommand()55 effective_command << BashEscape(argument) << " "; in FormattedCommand()57 effective_command.seekp(-1, effective_command.cur); in FormattedCommand()58 effective_command << "`\n"; // Overwrite last space in FormattedCommand()59 return effective_command.str(); in FormattedCommand()