diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-10-24 15:32:28 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-10-24 15:32:28 +0200 |
commit | acaa6097127fa23e1a61a40b38a14a39af5c22b1 (patch) | |
tree | efdb71773eeedd9f6c0941aa634c19dfdc4bdf05 /literature.meta.yml.gup | |
parent | b0664409b92541883e4cf17ff77730aa124e9d48 (diff) | |
download | incremental-dfsts-acaa6097127fa23e1a61a40b38a14a39af5c22b1.tar incremental-dfsts-acaa6097127fa23e1a61a40b38a14a39af5c22b1.tar.gz incremental-dfsts-acaa6097127fa23e1a61a40b38a14a39af5c22b1.tar.bz2 incremental-dfsts-acaa6097127fa23e1a61a40b38a14a39af5c22b1.tar.xz incremental-dfsts-acaa6097127fa23e1a61a40b38a14a39af5c22b1.zip |
Bachelor's thesis; look up literature
Diffstat (limited to 'literature.meta.yml.gup')
-rw-r--r-- | literature.meta.yml.gup | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/literature.meta.yml.gup b/literature.meta.yml.gup new file mode 100644 index 0000000..dc8e95d --- /dev/null +++ b/literature.meta.yml.gup | |||
@@ -0,0 +1,26 @@ | |||
1 | #!/usr/bin/env zsh | ||
2 | |||
3 | exec 1>$1 | ||
4 | |||
5 | echo '---' | ||
6 | |||
7 | cat <<-EOF | ||
8 | lang: de-de | ||
9 | link-citations: true | ||
10 | EOF | ||
11 | |||
12 | printf "bibliography:\n" | ||
13 | |||
14 | typeset -a bibFiles | ||
15 | bibFiles=(literature/**.bibtex) | ||
16 | |||
17 | # sha256sum ${bibFiles} >&2 | ||
18 | |||
19 | gup --contents <<<"${bibFiles}" | ||
20 | gup -u ${bibFiles} | ||
21 | |||
22 | for bibFile (${bibFiles}); do | ||
23 | printf " - %s\n" ${bibFile} | ||
24 | done | ||
25 | |||
26 | echo '...' | ||