main
#!/bin/bash -e for _ in {1..10}; do psql -h localhost -p 15432 sslmode=disable -c "select count(*) from test.test" postgres done