Clarification, as I'm just starting with Perl, how do a write that perl syntax into a korn shell command line executable. By way of example, the ${NUM} value is passed in, and the "perl -e" and/or "perl -e and printf" syntax will print it with comma separators.
NUM="1234567890"
echo "${NUM} should print with comma separators"
perl -e ????????????????