Sunday, March 23, 2008

perl 2

perl is fairly similar to bash. main differences include syntax and characters. for example in perl

if{
   action
}else{
    other action
}

as opposed to bash

if
then
  action
else
  other action
fi

No comments: