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.

8 lines
212 B

  1. #!/bin/bash
  2. # 循环指令./sender 随即休眠0.1,0.2,0.3 后杀死 进程
  3. while true; do
  4. ./sender &
  5. sleep $(printf "0.%03d" $(( RANDOM % 100 )))
  6. killall sender
  7. echo "Killed sender process"
  8. done