Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jan 072010
 

How to redirect error message to a file

Answer:

Assume you have some program/script that print to the standard error stream (i.e. stderr)

E.g. error.pl

print STDERR 'error';

You cannot redirect the error message just by basic file redirection, e.g.

perl error.pl > error.txt

Instead, you need to use 2>

perl error.pl 2> error.txt

Jan 022010
 

How to sort a hash in Perl

Answer:

# %hash is the hash to sort
@keys = sort { criterion() } (keys %hash);
foreach $key (@keys) {
    $value = $hash{$key};
    # do something with $key, $value
}