added echo in loop

This commit is contained in:
Marc Mance
2024-05-29 18:35:52 -04:00
parent 3fdecb1d27
commit 2c6137bb1f

View File

@@ -12,7 +12,9 @@ echo ""
iterations=$1 iterations=$1
for (( i=1; i<=$iterations; i++ )); do for (( i=1; i<=$iterations; i++ )); do
# Execute the command # Execute the command
echo "Executing $1 Iteration"
python3 ixiostat.py python3 ixiostat.py
gstat -C -s -d -o -p -I 60s >> /root/gstat.csv gstat -C -s -d -o -p -I 60s >> /root/gstat.csv
# Wait for 60 seconds before the next iteration # Wait for 60 seconds before the next iteration