ODT
/
rero-ils-graphs
Archived
1
0
Fork 0
This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues/pull-requests.
rero-ils-graphs/by_json/gen_policies.sh

25 lines
421 B
Bash
Executable File

#!/usr/bin/env bash
#
# Generate a dot file to create graph of RERO-ils data
#
# Load commons variables, functions and statements
source commons.sh
# Graph header
title="Circulation policies details."
save "templates/header.tmpl"
# ORGANISATIONS
source process_orgas.sh
# LIBRARIES
source process_lib.sh
# CIRCULATION POLICIES
source process_cp.sh
# Graph footer
save "templates/footer.tmpl"
# END of program
exit 0