--- /dev/null
+#!/bin/bash
+
+cd /srv/openils/bin
+
+DATABASE=evergreen
+FULL_QUERY="select id from biblio.record_entry where not deleted"
+POSTSEC_QUERY="select * FROM asset.call_number where owning_lib in (select id from actor.org_unit_descendants(27)) and not deleted and label != '##URI##';"
+
+# full dump for outlook public libraries
+psql -A -t -c "$FULL_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --exclusion_ini sitka_full_outlook.ini
+
+# media for BC ELN post-secondary libraries
+psql -A -t -c "$POSTSEC_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --exclusion_ini bc_eln_media.ini
+~
+# serials for BC ELN post-secondary libraries
+psql -A -t -c "$POSTSEC_QUERY" $DATABASE\
+|./marc_export_custom --config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --exclusion_ini bc_eln_serials.ini