So I have a script that runs like so:
psql -d database_name -f schema.sql
the schema.sql file contains statements like:
DROP TABLE IF EXISTS networks;
INSERT INTO table(col1, col2. ...) VALUES(val1, val1)
but I have a lot of repeat values in the said script. How do I go about setting and accessing variables?