/usr/share/runawk/abs.awk is in runawk 1.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Written by Aleksey Cheusov <vle@gmx.net>, public domain
#
# This awk module is a part of RunAWK distribution,
# http://sourceforge.net/projects/runawk
#
############################################################
# =head2 abs.awk
#
# =over 2
#
# =item I<abs (V)>
#
# return absolute value of V.
#
# =back
#
function abs (v){
if (v < 0)
return -v
else
return v
}
|