9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" ]
|
|
then echo Expecting doi code
|
|
exit
|
|
fi
|
|
|
|
curl -LH "Accept: text/bibliography; style=bibtex" "http://dx.doi.org/$1"
|