Skip to content

Commit

Permalink
export zotero script
Browse files Browse the repository at this point in the history
  • Loading branch information
lepisma committed May 23, 2021
1 parent 453242f commit 7f34866
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/bin/export-zotero
@@ -0,0 +1,10 @@
#!/usr/bin/env fish

set root_url = "http://127.0.0.1:23119/better-bibtex/export/library?"
set export_file = "/run/media/lepisma/Data/Notes/library.bib"

# Personal library
wget $root_url"/1/library.biblatex" -q -O $export_file

# Group libraries
wget $root_url"/2/library.biblatex" -qO- >> $export_file

0 comments on commit 7f34866

Please sign in to comment.