psql -c "instruction psql"
#!/bin/sh
psql -c "DROP DATABASE mydb"
psql -c "CREATE DATABASE mydb"
psql -c "GRANT ALL PRIVILEGES ON DATABASE mydb TO user1"
\! : permet d'exécuter certaines commandes du shell Linux depuis le client psql.
\!