运行 awk 在 tox 内部
Running awk inside of tox
我已将以下命令配置为 tox 中的命令。
bash -c "ps | awk '{print }'"
因为使用 {}
进行替换,所以我收到 tox 配置错误,指出 print $1 不存在。对此有好的解决方法吗?
来自 the documentation on substitutions
You can escape curly braces with the \ character if you need them, for example:
commands = echo "\{posargs\}" = {posargs}
免责声明:我是 tox 维护者之一
我已将以下命令配置为 tox 中的命令。
bash -c "ps | awk '{print }'"
因为使用 {}
进行替换,所以我收到 tox 配置错误,指出 print $1 不存在。对此有好的解决方法吗?
来自 the documentation on substitutions
You can escape curly braces with the \ character if you need them, for example:
commands = echo "\{posargs\}" = {posargs}
免责声明:我是 tox 维护者之一