Adding a launcher

This commit is contained in:
mickael
2019-02-08 11:02:18 +01:00
parent 0072f8fd46
commit 8f82245f38
4 changed files with 25 additions and 8 deletions

15
launcher.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
agents=1
cp config-save config
cp analyze.sh analyze.tmp.sh
echo -n "password : "
read -s input
echo ""
for i in $(seq $agents)
do
echo $input | ./agent.sh $i
done