Hacker News new | ask | show | jobs
by heresy 5475 days ago
PowerShell is handy, but man, is it slow. If you thought text rendering by cmd.exe was slow, wait till you get a load of PowerShell.

I don't really understand why the console subsystem in Windows is so slow that it can actually add a significant amount of time to a build with lots of scrolling text.

Even the "slow" Terminal.app is a whiz by comparison, to say nothing of Gnome Terminal, or, rxvt.

1 comments

I remember a few occasions at work where I figured I'd write a quick Powershell script to process some text files or something, and writing the script was quick and pleasant enough, but then it turned out to be quicker to just write a C# program to do the same thing rather than wait for the Powershell script to finish =)
> it turned out to be quicker to just write a C# program

I you really should install cygwin (and MinTTY).

http://www.catb.org/~esr/writings/unix-koans/shell-tools.htm...

iirc I had cygwin installed as well, but had mostly stopped using it for some reason I forget.