I have a file with a long list of integers:
10
4
66
....
I want to find the maximum value using UNIX command line tools. I know I can use sort
(and indeed there are solutions to this problem on SO that use sort
), but that's inefficient, requiring O(N*log(N)) and plenty of memory. With a simple for loop, I should be able to find the maximum value in O(N) and a couple of bytes of memory.
It seems there must be some program out there (with a name like max
) that does this out of the box---is that true?
max=1
while read i
do
if [[ "$i" > "$max" ]]; then
max="$i"
fi
done < a.txt
echo "$max" > b.txt
a.txt is the input file(with an integer on each line). b.txt contains the maximum of the integers in a.txt.
You can use this if no negative number is expected:
awk '$0>x{x=$0};END{print x}' input.txt
Use this to support negative numbers:
awk 'BEGIN{x=-2147483648};$0>x{x=$0};END{print x}' input.txt
Initializing x
allows the solution to properly handle integer lists with values <= 0. See the comments for more details.
awk '{if($1>a)a=$1;}END{print a}' temp3
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With