Vous pouvez essayer ceci:
$ awk 'BEGIN{printf "%3.0f\n", 3.6}'
4
Notre option de format comprend deux parties:
3
: ce qui signifie que la sortie sera complétée à 3 caractères.
.0f
: ce qui signifie que la sortie n'aura aucune précision, ce qui signifie arrondi.
De man awk
, vous pouvez voir plus de détails:
width The field should be padded to this width. The field is normally padded
with spaces. If the 0 flag has been used, it is padded with zeroes.
.prec A number that specifies the precision to use when printing. For the %e,
%E, %f and %F, formats, this specifies the number of digits you want
printed to the right of the decimal point. For the %g, and %G formats,
it specifies the maximum number of significant digits. For the %d, %o,
%i, %u, %x, and %X formats, it specifies the minimum number of digits to
print. For %s, it specifies the maximum number of characters from the
string that should be printed.
/dev/null
nécessaire?BEGIN
bloc, ce n'est pas le cas. J'ai d'abord testé avec l'expression dans le corps normal, donc mea culpa. Merci, @Gnouc.Awk utilise sprintf en dessous et il arrondit de manière impartiale, donc en fonction de votre plate-forme si vous voulez qu'il arrondisse TOUJOURS, vous devrez peut-être utiliser quelque chose comme ceci:
awk "BEGIN { x+=(5/2); printf('%.0f', (x == int(x)) ? x : int(x)+1) }"
Ne pas s'en rendre compte peut conduire à des bugs subtils mais désagréables.
la source