Sudo
使用 sudo 時,npm 的神奇之路是什麼?
sudo ${which npm} run xxx
我記得當我需要 root 權限來執行 npm 時,我能夠使用類似的東西。它是什麼?
使用 bash 你可以做到
sudo "$(which npm)" run ... # or sudo "`which npm`" run ...