# # This script is to test the imuxsocket overrun protection # # # Define number of messages for testing n=1000 #n=amount of messages i=1 #i=starting value # Loop that runs until msgnmb is achieved while [ $i -lt $n ] do logger "This is Testmessage #$i" echo "Messages: $i" i=`expr $i + 1` done