Help for this page
$alias = "johnq.smith1"; $alias++;
"johnq.smith2"
$alias = "johnq.smith1"; ... $alias .= $1++; # $alias is now "johnq.smith2" }