mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-15 01:48:18 -05:00
9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
psql -h ${DB_HOST:-localhost} \
|
|
-d ${DB_NAME:-reddit} \
|
|
-U ${DB_USER:-reddit} \
|
|
-p ${DB_PORT:-5432} \
|
|
-F"\t" -A -t
|