Spyke

Replies

Comment on

finally something worse then curl | sh

Reply in thread

In bash, & just starts the program in the background, so all of the commands are run in parallel. You're probably thinking of &&, which runs the command on its left, checks its return code, and then decides whether run the command on the right.

Although, in this case there are no 'commands on the right' since all the commands are on separate lines. You'd need to backslash the commands together, something like

pip install "$1" && \
easy_install "$1" && \
...
linux

Comment on

The Quiet Revolution: GNU/Linux Crosses 6% Desktop Market Share—And It’s Just the Beginning

Reply in thread

"don't care for" is just a polite way to say "don't like". The author does care, at least enough to write a fairly lengthy blog post, they just don't like Gnome and expressed in in a somewhat dated manner. You of course don't have to care, and as the blog says, if you like Gnome, you do you.

Out of curiosity, was there anything in the post that resonated with you? "Oh yeah, that could be better" or "that does annoy me", something along those lines?

You reached the end