in reply to Removing decimals in number
printf "%d" => 141.32124355465 # prints 141 [download]
$ perl -e 'printf "%d\n", 141.999999999999999' 142 [download]
duff