Sudo

使用 sudo 時,npm 的神奇之路是什麼?

  • June 5, 2020

sudo ${which npm} run xxx我記得當我需要 root 權限來執行 npm 時,我能夠使用類似的東西。它是什麼?

使用 bash 你可以做到

sudo "$(which npm)" run ...

# or

sudo "`which npm`" run ...

引用自:https://serverfault.com/questions/1020137