Hacker News new | ask | show | jobs
by beatgammit 4963 days ago
I'm actually glad for the inefficiency of the Windows command-line. Every time I boot up into Windows to test something, I'm reminded of how much I hate it. Since moving to Linux, development is just easier in every way:

* viM instead of Visual Studio has made me a better programmer * think more, guess less * I can keep customizations when I remote in and patch production code * Bash is much more productive than .bat files * Piping is amazing (cat file | sed | awk | ...) * Tons of documentation online

If Windows had a decent command-line (with decent documentation of course), I might convince myself to put up with less malleable tools just to play games without rebooting.

Don't get me wrong, Windows is fine, but it's not Unix. A better command-line app can't change that.

1 comments

>If Windows had a decent command-line (with decent documentation of course), I might convince myself to put up with less malleable tools just to play games without rebooting.

Isn't the point of a commandline that it makes basic tools far more malleable? For example, I recently was working with an OCR tool that took as an input 1 image file path, and an output name, and extracted plaintext from the image.

If this were a gui tool, I would be stuck manually running it on hundreds of images at once. As a command-ling tool, I can do: `find . | grep *.jpg | xargs -n 1 -I{} | tesseract '{}' '{}'`