Files
advent-of-code-2021/01/01.sh
2021-12-01 14:55:47 +01:00

13 lines
166 B
Bash
Executable File

#!/bin/bash
prev=0
found=0
while read current; do
if [ $prev -gt 0 ] && [ $current -gt $prev ]; then
found=$((found+1))
fi
prev=$current
done
echo $found