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
8 lines
212 B
#!/bin/bash
|
|
# 循环指令./sender 随即休眠0.1,0.2,0.3 后杀死 进程
|
|
while true; do
|
|
./sender &
|
|
sleep $(printf "0.%03d" $(( RANDOM % 100 )))
|
|
killall sender
|
|
echo "Killed sender process"
|
|
done
|