18

I read about the Pipe Viewer (pv) Linux utility, and it sounds really useful. I use plenty of Linux tools on Windows, but this one doesn't seem to be part of the msysgit suite that I use.

How can I get a Windows binary of it?

Ram Rachum
  • 5,011
  • 6
  • 33
  • 44
  • I'm not certain if its a windows binary or if it's a cygwin compile job, but if you get no definite replies i'll ask the author for you on monday when i'm in work. – Sirex Nov 05 '11 at 22:07
  • Thanks @Sirex ! I actually sent him a message about it in his contact form, and didn't get a reply yet. – Ram Rachum Nov 06 '11 at 18:52
  • cygwin compile apparently. – Sirex Nov 07 '11 at 08:52

2 Answers2

2

I have stumbled over this question today, as I am looking the same kind of tool for Windows. I didn't found one for Windows, but I found that answer from Stackoverflow, and the solution is just to use the one from Cygwin.

Here is the quote from there:

I finally made it work on Cygwin environment though that is not answer for the original post. "--disable-nls" does the trick.

./configure --disable-nls

make

make test

cp pv /usr/bin

Hanan N.
  • 378
  • 5
  • 16
1

It is already available as a cygwin package for 32 and 64 bits.

Pipeviewer for Cygwin 32 bits:

https://cygwin.com/cgi-bin2/package-cat.cgi?file=x86%2Fpv%2Fpv-1.4.4-1&grep=pv.exe https://cygwin.com/cgi-bin2/package-cat.cgi?file=x86%2Fpv%2Fpv-1.4.12-1&grep=pv.exe

Pipeviewer for Cygwin 64 bits:

https://cygwin.com/cgi-bin2/package-cat.cgi?file=x86_64%2Fpv%2Fpv-1.4.12-1&grep=pv.exe

Smeterlink
  • 121
  • 2