Hacker News new | ask | show | jobs
by shrimp_emoji 2471 days ago
I'm so glad I'm not alone in this.

I never even bothered to learn Bash properly because even that's difficult, and I figured it'd be "good mental money after bad". And, now that Python ships with all distros, I feel even less need to.

I do like Bash's range syntax though:

    for i in {0..5} ; do echo $i ; done
Like Ruby's. It's so nice! D: I lament Python's lack of it.
1 comments

    echo {1..5} 
is even nicer. Or

    echo {1..5}{1..5}{1..5}