forked from soccera/rdo
7 lines
103 B
Bash
Executable file
7 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
program="$1"
|
|
|
|
for _ in $(seq 1 10000); do
|
|
echo rdo123 | $program whoami >/dev/null
|
|
done
|