up vote 48 down vote favorite
33
share [g+] share [fb]

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.

One language per response, please.

link|improve this question
3  
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
show 3 more comments
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 20 '11 at 1:46

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

36 Answers

1 2
up vote 88 down vote accepted

Python

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 client's programming language

Since you already know C/C++ and thus are new to Python programming, 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.net/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: How to learn Python?

link|improve this answer
2  
@johnstok: Eli's answer is better (more clear, more explanation, more detail) than Joel's. – eyelidlessness Oct 17 '08 at 17:53
show 1 more comment
feedback

JavaScript

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|improve this answer
3  
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
16  
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
1  
The web is the new OS and JavaScript is its scripting language. JS also has many odd properties that make it very powerful and interesting as a language in general: first class functions, JSON, prototype-based object model. I wish I could use JS in more situations, I think it's a marvelous scripting language. – CodexArcanum Oct 20 '10 at 15:35
show 6 more comments
feedback

Ruby

I'd suggest Ruby.

link|improve this answer
8  
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
show 1 more comment
feedback

Perl

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|improve this answer
3  
I take issue with Perl sytnax being similar to C. – Joel Coehoorn Oct 17 '08 at 18:20
5  
@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
show 1 more comment
feedback

Ruby

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|improve this answer
feedback

Lua

What about Lua? I've been learning it for a while 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 (OOP). 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 OOP 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 a 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|improve this answer
feedback

Powershell

If you use Windows, make it PowerShell.

Good

PowerShell combines a rich, relatively sensible syntax with .NET, COM, and WMI integration. It also offers a novel (and very cool) pipeline of objects.

It is both a great scripting languange and a great shell, so your knowledge is useful in both contexts. (Compare to CMD which is a fine shell but a crappy script language, or CScript/WScript, which are fine scripting languages, but no shell.)

Bad

If you're not on Windows, it's not much use to you.

If you hate Perl syntax, you'll mildly dislike PowerShell's syntax.

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

link|improve this answer
feedback

Python

Python seems to be getting a lot of traction.

link|improve this answer
4  
-1 Python is already listed, consider updating the existing answer. – mizipzor May 31 '10 at 11:07
9  
@mizipzor - if you sort your answers oldest first, you'll see this was the first response to the question. – Joel Coehoorn May 31 '10 at 14:33
show 5 more comments
feedback

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|improve this answer
show 1 more comment
feedback

Shell, Ruby, Python

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|improve this answer
feedback

Falcon, Scala

Go try Falcon and Scala, both are amazing!

link|improve this answer
1  
Wow, never heard of Falcon before but at a first glance it looks very promising. I've programmed quite some stuff with Lua but beeing a professional Java Developer I'm missing some kind of 'official' OO support there. Seems that Falcon has more to offer in that direction. Thank you for mentioning it here. – Ridcully Jan 22 '10 at 20:12
feedback

Tcl

While I'm very biased as a developer of Tcl, I think that Tcl's definitely worth a look. Others have put together better reasons (about half way down) why than I feel I can advance myself without being a bit too hypocritical. Quoting from there:

Why Tcl? Because there seems to be nothing quite like it, in terms of simplicity, expressive power, flexibility, robustness, portability, scalability, and deployment. I don’t mean in terms of each individual issue, but in terms of the combination of those aspects. As a package deal, Tcl embodies a surprisingly clever and effective set of trade-offs. I could probably dismiss Tcl on every single issue in isolation, and name another language which would be preferable – but no single language can go where Tcl goes.

link|improve this answer
1  
+1 due to irrational bias – TokenMacGuy Oct 11 '10 at 9:09
show 1 more comment
feedback

Lua

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|improve this answer
feedback

PHP

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 (although 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 also somehow has 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, although 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!!

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

Groovy

Perhaps Groovy?

link|improve this answer
show 3 more comments
feedback

Ruby is gaining ground

link|improve this answer
3  
If the number of different answers here which suggest Ruby is indicative of the community, it will fork into several different versions soon... – Pete Kirkham Nov 6 '10 at 10:13
show 1 more comment
feedback

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|improve this answer
feedback

+1 to LUA cause it beats Python and Ruby on CPU time and memory usage :-)

p.s.

Lua vs Ruby 1.9 benchmark (you can look also Lua Vs Python 3):

http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=lua&lang2=yarv

link|improve this answer
1  
If you are that concerned those characteristics, then you probably don't want a scripting language, but a dynamic language which allows true compilation, such as common Lisp. – Pete Kirkham Nov 6 '10 at 10:16
show 1 more comment
feedback

Why just one Language?

When I think scripting I think first Unix shell programmming where BASH is the common shell progam. Whatever your system is set up with though should be learnt to some extent. One can't reccomend BASH for major projects but it is well worth your time to at least learn a little.

Man does not live on bread alone so I'd strongly reccomend learning Python. Python is very cross platform so that helps a lot. Python is a lot like VIM, you can find it anywhere. Pervasive doesn't make it good but it does mean transferable skills.

To a some extent Ruby is in the same ball park as Python but not as mature. JavaScript is great but has severe limitations when inside a browserr.

Dave

link|improve this answer
feedback

Lua

It is easily embeddable, very fast, has a simple syntax and best of all it is very easy to earn points on Stack Overflow because there aren't that many active Lua users here (though the ones that are, are very skilled).

link|improve this answer
feedback

PowerShell, VBScript, C#

If you are referring to a scripting language to write some quick admin things, there's always PowerShell scripts, VBScript 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 applications for both the web and Windows. You can also take it a step further and learn XAML which could render an application as WPF (Windows) or Silverlight (Web).

link|improve this answer
1  
These should not be grouped together. Make them separate answers, and delete this answer. – Jay Bazuzi Aug 22 '10 at 3:45
1  
C# is a scripting language? – Alix Axel Aug 22 '10 at 3:53
1  
is C# a scripting language? – Saurabh Oct 11 '10 at 11:13
show 3 more comments
feedback

Perl

Perl is the best scripting language to learn for many reasons, but the two that might not spring to most people's minds are

  • Learning Perl is the best introduction to Scripting Languages ever written
  • The Perl community is very friendly to new-comers

If we're honest the actual language differences between Python, Perl and Ruby are all pretty small. This means that the reference material and support you get is really a good way to make a your decision.

link|improve this answer
feedback

Perl

I strongly respect the reasons given by several other people in favor of some of these languages. In some ways, you can make good arguments for some of them being superior to Perl as languages. However, you asked which one to learn as a scripting language. Perl was created for that purpose. It makes scripting easy. Perhaps more to the point, the Perl community has a long history of documenting Perl for scripting tasks and developing modules to support the needs of programmers using it for those tasks.

There was once a time when programming languages existed more in isolation than they do today. Now, you have to consider them in the context of the libraries or modules and communities around them. While the quality of those is excellent for several of the languages other people have mentioned, their focus is different. A good language with a wide range of modules specifically built for the purpose you have in mind is the way to go.

link|improve this answer
feedback

Python

it's great from beginner to expert, it's fast, and you can do anything you need to do... if you need a breath of fresh air after a while on Python try Ruby(my favorite)... and if you want to appreciate Python/Ruby's simplicity try Perl... cough

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
show 3 more comments
feedback

Python for the simple reason that its syntax is a huge benefit, not a hindrance, you just have to break away from the mindset of brackets and after a little while you will not want to have to use them for anything, they serve no real purpose other than to muck up code, think, every bracket takes up a line in properly spaced code and this is done for no real reason... if you are writing code cleanly then you should be indenting anyways, so why the need for brackets, i don't get why this would bother someone

link|improve this answer
show 1 more comment
feedback

I agree with the Lua one, it is one of the easiest programming languages to learn and I'm just 14 years old and I knew Lua since I was 9 years old. If a 9 years old could learn it, you could too and Lua isn't as much a memory hog as Python or Ruby.

You could also try using Pascal, it is an easy language too...

link|improve this answer
feedback

I think the problem with this question is the platform of execution. PHP is invaluable these days for web development. But PHP won't help you if you are looking to script OS events.

For Web: PHP & Javascript (and jQuery is the best framework)

For Windows: - VBScript should be a highschool course. It's on all windows boxes by default. You should know the basics (pun intended) - Perl is probably the biggest, probably because it is cross platform. But the syntax is strange IMO (if/elif/elsif, etc) - Python is highly regarded but much less popular - Tcl was my first automated scripting language and it was very good. Learned it in about 6months with the help of the big black Tcl/Tk reference book - Lua I only know from the Grand Theft Auto addon for "Multi Theft Auto" used it. It seemed easy enough to use, but again, not very popular.

I use vbscript in most cases when scripting windows events simply because its just "there" on all boxes. No other software to install or screw around with. vbsEdit is a great debugger but you can use the msscript debugger from microsoft with any popular editor (notepad++, ultraedit, etc). Additionally, learning vbscript is like learning the piano.. it helps you grasp the concepts of programming with other languages if you learn it first.

link|improve this answer
feedback

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

link|improve this answer
3  
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
show 5 more comments
feedback
1 2

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