8 lines
172 B
Bash
8 lines
172 B
Bash
#!/bin/bash
|
|
pg_dump --column-inserts \
|
|
--data-only \
|
|
--file "backup_$(date --iso-8601)" \
|
|
--host 0.0.0.0 \
|
|
--port "5432" \
|
|
--username "etatdulibre" \
|
|
--blobs "etatdulibre"
|