From 6a15eab26ed417dade02b2a90c140ee61c4a6e43 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 16 Mar 2018 15:00:26 -0400 Subject: Add pdf script --- .gitignore | 1 + pdf.zsh | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100755 pdf.zsh diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..da0de7e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pdf diff --git a/pdf.zsh b/pdf.zsh new file mode 100755 index 00000000..81e3f706 --- /dev/null +++ b/pdf.zsh @@ -0,0 +1,22 @@ +#!/usr/bin/env zsh +set -o errexit -o nounset -o pipefail + +mkdir -p pdf + +fetch() { + [ -f "pdf/$1" ] && return + curl --silent --show-error --output "pdf/$1" "$2" + echo "pdf/$1" +} + +elf() { fetch "$1" "http://refspecs.linuxbase.org/elf/$2" } +intel() { fetch "$1" "https://software.intel.com/sites/default/files/managed/$2" } + +elf abi.pdf x86_64-abi-0.99.pdf +elf elf.pdf elf.pdf +fetch multiboot.pdf 'https://www.gnu.org/software/grub/manual/multiboot/multiboot.pdf' +intel intel-64-opt.pdf 9e/bc/64-ia-32-architectures-optimization-manual.pdf +intel intel-64-sdm-vol-1.pdf a4/60/253665-sdm-vol-1.pdf +intel intel-64-sdm-vol-2.pdf a4/60/325383-sdm-vol-2abcd.pdf +intel intel-64-sdm-vol-3.pdf a4/60/325384-sdm-vol-3abcd.pdf +intel intel-64-sdm-vol-4.pdf 22/0d/335592-sdm-vol-4.pdf -- cgit 1.4.1 c/CodeQWERTY.keylayout?id=5e61445c931c97810bdbef51b3d171513da98d81&follow=1'>diff
path: root/etc/CodeQWERTY.keylayout (unfollow)
Commit message (Expand)Author
2019-09-28Add The Black Tides of HeavenJune McEnroe
2019-09-27Fail on HTTP failure status in titleJune McEnroe
2019-09-23Add Trail of LightningJune McEnroe
2019-09-22Revert "Enable cookies in title"June McEnroe
2019-09-20Enable cookies in titleJune McEnroe
2019-09-16Use sensitivity aliases in TF2June McEnroe
2019-09-16Add The Just CityJune McEnroe
2019-09-12Only GET the final redirect locationJune McEnroe
2019-09-12Consume entire bodyJune McEnroe
2019-09-10Add title -v flagJune McEnroe
2019-09-10Use curl error bufferJune McEnroe
2019-09-10Set Accept-Encoding in titleJune McEnroe
2019-09-08Set title User-AgentJune McEnroe
2019-09-07Add -x flag to titleJune McEnroe
2019-09-07Ignore SIGPIPE in relayJune McEnroe
2019-09-07Add A Memory Called EmpireJune McEnroe
2019-09-05Handle lack of Content-TypeJune McEnroe
2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe
2019-09-05Decode entities in titlesJune McEnroe
2019-09-05Print title as soon as it's availableJune McEnroe
2019-09-05Use CURL_PREFIX to set flagsJune McEnroe
2019-09-05Add titleJune McEnroe
2019-09-04Add Avorter n'est pas tuerJune McEnroe
2019-08-29Unset executable on shell scriptsJune McEnroe
2019-08-29Add long-missing setopt to bin.7June McEnroe
2019-08-29Add editJune McEnroe