You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
152 B

#!/bin/sh
pg=0
for i; do
if [ $pg -lt $i ]; then
pg=$i
fi
done
if [ $pg -eq 0 ];then
echo "Pb, le plus grand est null" >&2
exit 1
fi
echo "$pg"