tping.sh 105 B

1234567
  1. x=0
  2. while [[ x -lt 1000 ]]; do
  3. x=`expr ${x} + 1`
  4. echo "第"${x}"次ping"
  5. ping -c 2 127.0.0.1
  6. done