Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell, stack: locate the executable

I'm looking for something like

$ stack whereis hasktags

where whereis acts more or less like UNIX whereis command. hasktags is to be run like this:

$ stack exec -- hasktags
like image 219
Alexey Orlov Avatar asked Oct 28 '25 18:10

Alexey Orlov


1 Answers

stack exec -- whereis hasktags will do.

like image 134
Hogeyama Avatar answered Oct 30 '25 13:10

Hogeyama