8 lines
135 B
Bash
Executable File
8 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in $(seq 1 20);
|
|
do
|
|
echo $i
|
|
docker run -d -p 5800 -e "TARGET_URL=https://www.google.com" tor_browser:latest
|
|
done
|