#!/bin/sh

set -eux

for f in /usr/lib/postgresql/*/bin/*.py; do
  $f --help
done
