8 lines
173 B
Bash
8 lines
173 B
Bash
#!/bin/bash
|
|
pg_dump --column-inserts \
|
|
--data-only \
|
|
--file "backup_20200515" \
|
|
--host "$PG_ETATLIBRE_IP" \
|
|
--port "5432" \
|
|
--username "etatdulibre" \
|
|
--blobs "etatdulibre"
|