linux下用debug方法调试的疑问(shell脚本问题)
用了debug模块后在linux中启动: DEBUG=mydebug:* node app.js
我想知道前面的DEBUG=mydebug:* 是表示什么意思呢?
好像也不是定义变量的意思,因为我执行: DEBUG=mydebug:* echo ${DEBUG} 是输出空
执行: DEBUG=mydebug:* && echo ${DEBUG} 是输出mydebug:*