Rounding off real (floating point) values - bash to awk

Helmut Karlowski helmut.karlowski@ish.de
Thu Nov 26 17:27:00 GMT 2015


---------------------------------------------------
> On Thu, Nov 26, 2015 at 10:29 AM, Steven Penny wrote:
> > echo 3.7 | awk '{printf "%.0f", $0}'
> 
> Another option
> 
> awk 'BEGIN {printf "%.0f", ARGV[1]}' 3.7

#4: 

printf "%3.0f\n" 3.7

-Helmut


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list