将调试 NPM 模块与 fish shell 一起使用
Using debug NPM module with fish shell
我目前在开发 Node.JS 应用程序期间使用名为 debug 的 npm 模块。据我了解,它通过使用 DEBUG 环境变量(?)使用 bash 命令输出调试结果:
DEBUG=* node index.js
这与 bash 的预期一样有效,但我想知道使用 Fish shell 的等效项是什么,我刚刚开始使用它,我喜欢它,但它会很棒如果我也能得到这个功能。
谢谢
对于fish,要为特定命令设置环境变量,只需使用env
env DEBUG="*" node index.js
您必须引用或转义通配符。
这种方法也适用于 bash。
我目前在开发 Node.JS 应用程序期间使用名为 debug 的 npm 模块。据我了解,它通过使用 DEBUG 环境变量(?)使用 bash 命令输出调试结果:
DEBUG=* node index.js
这与 bash 的预期一样有效,但我想知道使用 Fish shell 的等效项是什么,我刚刚开始使用它,我喜欢它,但它会很棒如果我也能得到这个功能。
谢谢
对于fish,要为特定命令设置环境变量,只需使用env
env DEBUG="*" node index.js
您必须引用或转义通配符。
这种方法也适用于 bash。