How do I output large numbers is the format NNN,NNN,NNN..., using awk print or printf. Please give me an example.
such as :
ls -l|awk '{Tbytes += $5} END {print "Total Bytes " Tbytes}'
Only output the total bytes in format NNN,NNN,NNN
Thanks,
Joe