Shell magic

Here is something really cool. Make a file called 'list.txt' that looks like this:

one
two
three
four
five

Now, pick a host that you have ssh access to, and do this:

cat list.txt | ssh mybox.internal.net 'sort'

And boom:

five
four
one
three
two

This is called "distributed computing".