windows - finding your executable file when "where" command didn't do good
We can find the actual path of your executable by using powershell command. Normal we added some exec somewhere and forgot about it.
The powershell command can help to trace where it is, save me bunch of time trying to look for this exec.
(Get-Command dbt).Source
Comments