Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List executables in path on Windows

On Windows, how can I list which executables are in my path?

like image 264
Colonel Panic Avatar asked Feb 20 '23 10:02

Colonel Panic


1 Answers

where *.exe

for any other executable you should change the extension, such as .bat, .run. But there is a point here, where also searches the current directory, so if you want only the executables in $PATH, you should run it in an empty directory or exclude the results by hand or script.

like image 170
Seçkin Savaşçı Avatar answered Mar 03 '23 23:03

Seçkin Savaşçı