vote up 6 vote down star
6

I have been learning C and C++ for sometime now. But, they do not allow me to do a lot of things like writing a script/program to get a bunch of files from the internet easily. So, I want to learn a scripting language which is fun and which is useful for everyday chores. Which one would you recommend, and why?

Other information that might be useful:

  1. References to tutorials / helpful information on how to learn the language.
  2. References to implementations of the language.
  3. Niches where you have found it to be particularly useful.
flag
This is a poll - kindly mark question n ans as community editable as a sign of good citizenship.. – Gishu Oct 17 '08 at 17:30
yes, community wiki please. – Chris Marasti-Georg Oct 17 '08 at 17:33

24 Answers

vote up 2 vote down

Python seems to be getting a lot of traction.

link|flag
To add to this, you can choose the .NET flavor and go with Python.NET. – Jason N. Gaylord Oct 17 '08 at 17:30
Maybe you could explain why you would choose python and not just say "python, because its cool". :) – Node Oct 17 '08 at 17:31
And developer traction isn't important? – Joel Coehoorn Oct 17 '08 at 18:14
It supports multiple paradigms.(procedural,OOP,functional,...) – david Feb 25 at 12:05
vote up 1 vote down

learn python.
You can search for other questions in this site for some reasons why.

link|flag
vote up 0 vote down

Ruby is gaining ground

link|flag
vote up 4 vote down

I'd suggest Ruby.

link|flag
I started learning Python but after trying Ruby, I couldn't go back. Ruby is a happier, more elegant and doesn't feel as hacked together as Python (IMHO). The only downside is that it runs slower. That should change (for the better) with 1.9. – Kurt Oct 17 '08 at 18:14
vote up 3 vote down

If you are referring to a scripting language to write some quick admin things, there's always PowerShell scripts, VB Scripts, etc.

But if you're looking to learn a language to do web stuff, I'd recommend learning C#. It's down the same path as C and C++ and you can write your apps for both the web and windows. You can also take it a step further and learn XAML which could render an app as WPF (Windows) or Silverlight (Web).

link|flag
vote up 3 vote down

If you want a good utility language, learn Perl. It's amazing, and wonderful.

link|flag
I don't care for Perl personally but I upvoted this because it's annoying to me that people are downvoting it just because Perl isn't popular. It's obviously a very capable language, and that is merit enough to suggest it. – eyelidlessness Oct 17 '08 at 17:39
I am throwing my hat into the ring for Perl as well. It's a fully featured language with a long history and a huge codebase/userbase outside of the .NET junkies. – Paul Nathan Oct 17 '08 at 17:48
Perl actually has some Lispish roots ( perl.com/pub/a/2007/12/06/soto-11.html look for "lisp"), and takes those roots more seriously than Python ( artima.com/weblogs/viewpost.jsp?thread=98196/… ). – Max Lybbert Oct 17 '08 at 18:17
If I had the rep to do so, I would downvote — not because of any animus toward Perl but because the answer was of no help. I now know that the answerer likes Perl, but I don't know why. The answerer included no links to teach me about the language, nor any enumeration of Perl's features. – savetheclocktower Oct 17 '08 at 22:13
vote up 18 vote down

Javascript (technically, ECMAScript or Standard ECMA-262; also known as JScript). With the increasing availability of many fully featured server-side/command-line implementations, it is becoming a great general purpose scripting language.

Edit: I want to be clear, I don't think this is the best scripting language to learn, as there is no best scripting language to learn. This is just one I'd recommend people learn if they haven't, because it's so useful.

References:

Implementations:

Niches: It's not the first place you'd think, but with Jaxer and Env.js/Rhino (see links above), Javascript on the server is becoming more and more viable. And if you think about it, it becomes a natural choice as it is the de facto standard client-side language.

link|flag
1  
If I were responsible for a CS curriculum at a university, I would push hard to teach Javascript in the first year. – Max Lybbert Oct 17 '08 at 18:17
Any good place to start learning JavaScript (or is it Javascript?) – Strider Oct 17 '08 at 18:25
Isn't it technically ECMAScript? – Cristián Romo Oct 17 '08 at 18:28
Sure, and "Javascript" belongs to Netscape (I think; may now belong to Mozilla?), but it is the most common name, and is used by pretty much everyone except when discussing the standardization efforts specifically. – eyelidlessness Oct 17 '08 at 18:32
2  
You would push hard to teach Javascript in the first year? Don't first year students have enough trouble making the compiler happy and understanding its errors? Do they really need to be confused by "undefined" errors and all the other subtle ways to mess up without proper feedback in Javascript? – BobbyShaftoe Jan 1 '09 at 8:33
show 1 more comment
vote up 1 vote down

For "getting" a bunch of files from the internet there are easier ways than to learn a scripting language. I'd suggest wget or curl. These can be combined with shell scripts.

For more advanced scripting more modern languages like Ruby and Python are most fun and useful for all kinds of stuff.

Ruby for example is easy to learn. You can even try it online interactively or learn it in 20 minutes.

link|flag
vote up 0 vote down

Perhaps Groovy?

link|flag
vote up 12 vote down

The reason this question is so subjective is that you didn't say much about what kind of scripting you want to do. Of course, you did mention downloading and processing files from the internet, so I'll recommend Python.

Another Stack Overflow user asked a specific question about doing webpage scraping and asked which language would be best. The first answer outlines all the Python modules in the standard library which help accomplish this sort of thing, so you may find that helpful: http://stackoverflow.com/questions/86206/http-clients-programing-language

Since you already know C/C++ and thus are not a newbie programmer, I recommend the book Dive Into Python, which is written for people who already know how to program and focuses on how Python makes it easy to perform common tasks. The full text of the book is available online at http://diveintopython.org/toc/index.html

The "How to Learn Python" Stack Overflow question might also be helpful, since it contains links and descriptions of various Python resources: http://stackoverflow.com/questions/17988/how-to-learn-python

link|flag
@Eli, if Python is your choice why not up-vote the existing answer and add a comment. As it is, you have split the vote for python so the most popular answer may not bubble to the top ;-) – johnstok Oct 17 '08 at 17:49
1  
@johnstok: Eli's answer is better (more clear, more explanation, more detail) than Joel's. – eyelidlessness Oct 17 '08 at 17:53
vote up 7 vote down

If you're familiar with C and Unix, Perl seems like a natural fit. The syntax is similar, but you get a lot of other "benefits" such as:

  • Regular expressions
  • Strings of unlimited size
  • Arrays of unlimited size and type
  • Easier file maniplation
  • Hash tables
  • CPAN
  • Flexible syntax
  • and more...

It's debatable whether you'll think features such as automatic type coercion, undefined values, and the sometimes-cryptic syntax are beneficial. I'll tell you this, however: with Perl, it was not uncommon for me to write a 100+ line program in a single sitting and have it work perfectly the first time I ran it. Not having to worry about declaring variables, overrunning arrays, and dealing with illegal null values allowed me to focus on solving the problem, not getting beat up by the compiler.

A lot is going to depend on what you need your scripting language for. I found Perl useful for the one-off programs I needed and for doing system administration tasks (chowing through log files, screen-scraping web sites, monitoring system resources, etc.)

My gut feeling, though, is that if you haven't had prior experience with Unix utilities such as grep, awk, and sed, you may not "get" Perl. In Perl-land, problems are best solved with hashes and regular expressions. They are far more productive (in terms of programmer time) than trying to shoehorn every data structure into arrays.

link|flag
1  
I take issue with Perl sytnax being similar to C. – Joel Coehoorn Oct 17 '08 at 18:20
@Joel: Why? Its syntax is based on C. That it diverges is part of what makes it a different language, but that doesn't mean its syntax doesn't come from C. As is the case with most languages. – eyelidlessness Oct 17 '08 at 18:36
When I learned Perl, I had a similar background as the OP, plus I had some shell scripting experience. For the most common things, Perl syntax is very similar to C: the use of braces for code blocks, = for assignment, brackets for arrays, etc. I was learning Perl 4 at the time, which was simpler. – Barry Brown Oct 17 '08 at 18:37
vote up 2 vote down

If you just want to play, why not try some out?

Personnally, I'd favour Ruby or JavaScript (I've not quite figure Boo out yet), but there's no reason why you might not find that you like other languages more, or that other languages suit are more suited to different problems.

One thing you may find, however, is that the cross-language querying features (like XPath and Regular Expressions) are more useful to learn that the individual languages themselves...

link|flag
++ for cross-language features like XPath/regex – eyelidlessness Oct 17 '08 at 18:37
vote up 0 vote down

I recommend javascript simply because its in line with c# which is more in lines of the language you are currently using (thus if you switch back and fourth a lot). My main reason for learning c# was because writing vb.net then javascript seemed unnatural.

There are too many good javascript places online to list, any quick google search will give you more than enough, but i say if you have particular issue, YOU POST IT ON HERE cause this thing rocks! ;-)

link|flag
vote up 2 vote down

Ruby is a great language for "everyday chores" and webscraping (see hpricot and Mechanize).

Googleage should provide plenty of tutorials and things for learning Ruby. See also this SOF question on learning Ruby.

link|flag
vote up 1 vote down

How about LUA? It is a fast, light-weight, embeddable scripting language. I'm not saying that it's THE BEST (it is subjective), but open your mind, try it out and be happy.

link|flag
vote up 2 vote down

What about Lua? I've been learning it for awhile and I've found that you can develop/prototype applications fairly quickly and there is a lot of flexibility with it. The only thing that standard Lua doesn't handle very elegantly is Object Oriented Programming. It can be done but it can be tricky. There are also several versions of Lua which have different features... such as one specifically for making Object Oriented Programming much more easier.

If not Lua then I would suggest, as others have, that you take a look at Python. I find though that Pythons syntax rules are very annoying. If you have particular indentation style that you use for C and C++ then you'll probably have to make a few modifications to it if you're planning on taking up Python.

link|flag
vote up 0 vote down

If you know C/C++, python has the advantage of relatively painless integration with those languages via Pyrex. This is incredibly useful if you need to interface a C/C++ library or you need to speed a python application up. In fact, for my purposes, elevates python from "scripting language" to "general purpose language."

link|flag
vote up 0 vote down

Of all of the scripting languages mentioned here, I believe Ruby is the best choice. I learned Ruby after having learned C/C++, C#, VB, VBS and a little javascript and to me Ruby has the easiest to learn and cleanest syntax, the fewest surprises when coding and things that just make sense.

For example, Python uses whitespace as a programming construct and those namehere methods, perl is way to easy to write "write once" code and favors global variables. Javascript supports a lot of metaprogramming facilities that ruby and python have but they are not as cleanly implemented and it feels almost like template meta programming in C++.

link|flag
You are bashing Perl and Python without having taken the time to learn them? – steveth45 Oct 17 '08 at 19:01
I learned a little about them and found other things to be easier to use while provide the same, if not more language features. – Raindog Oct 24 '08 at 17:35
vote up 2 vote down

If you use Windows, make it Powershell.

http://en.wikipedia.org/wiki/Windows_PowerShell

link|flag
vote up 1 vote down

It depends on the specific program you're writing, which means you have to learn Perl, Python, PHP, and Ruby, all of them. Unfortunately, I have no knowledge of Ruby. And, JSP is less like a scripting language.

  1. Heavy on HTML, less heavy on DB, heavy on DOM/XML/XPath
    Learn PHP. It has a whole lot of quality third-party libraries.

  2. Heavy on HTML, heavy on DB
    Learn Ruby on Rails. Its MVC framework will make your life happier, I heard. But this choice may limit the type of web servers. Ruby on Rails works like a charm with Apache, lighttpd? I don't know.

  3. Generic pipe(stdin/stdout) scripts, or heavy regular expression
    Perl. You cannot claim yourself as a shell script master without knowing Perl. You can easily install new modules with its CPAN repository.

  4. Massive concurrent network processing
    Python. The powerful network library Twisted runs on top of Python. Python looks beautiful compared to Perl.

link|flag
vote up 1 vote down

Go try Falcon and Scala, both are amazing!

link|flag
vote up 0 vote down

I'm just starting to jump into the world of web scripting too and I just finished learning PHP. I obviously can't recommend it over any of the other ones, since its the first such language I learned, but I can say that I've had a lot of fun with it and it has A LOT of functionality. I find it hard to believe that any of these other languages have the same horizontal scope as PHP.

But again, I can't say for sure ;)

Good luck!

link|flag
vote up -1 vote down

i'd suggest you to learn Javascript...

link|flag
vote up 0 vote down

PHP is pretty easy,but has a pretty awful syntax and it forces a lot of self discipline to be possibly used for designs with more than 10000 or 20000 lines (altough is it possible, for example the wonderful WORDPRESS blog package is written in PHP, or the HORDE email and calendar package for web servers is written in PHP).

Perl has also somehow the disadvantage of a syntax that can become pretty ugly if a lot of different programmers with different coding styles and shortcuts usage mindsets cooperate on a project : here their TMTOWDI design goal (there is more than one way to do it) can be a disadvantage (I personally love PERL a lot, though...)

Python seems to be more elegant and more consistent, altough probably at the beginning you will need some time to get used to their indentation-based scope delimitation...

For Ruby, I've seen it shortly and I did like it a little, but not too much... for me is a little too extreme , and I would consider it only if to use Ruby on Rails...

as a whole, I think that, no matter which you decide, mostly you will not regret your choice anyway, because all of them are for rapid prototyping and for small glue-logic scripts or text-based activities REALLY GREAT!! CIAO ALEX

link|flag
Wordpress is a lot of things, but I don't think "wonderful" is a word I'd use to describe it. – eyelidlessness Nov 7 at 5:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.