summary refs log tree commit diff stats
path: root/wip/backlink.sh
diff options
context:
space:
mode:
authorCase Duckworth2015-04-01 23:16:18 -0700
committerCase Duckworth2015-04-01 23:20:18 -0700
commitd161be120c22faf222ec15ca618ee367e4d56575 (patch)
treeb945633e680e5682a967f63bad88a2b262b4d4c6 /wip/backlink.sh
parentMerge branch 'gh-pages' of https://github.com/duckwork/autocento into gh-pages (diff)
downloadautocento-d161be120c22faf222ec15ca618ee367e4d56575.tar.gz
autocento-d161be120c22faf222ec15ca618ee367e4d56575.zip
Refactor makefile; Add hapax preprocessor
Diffstat (limited to 'wip/backlink.sh')
-rw-r--r--wip/backlink.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/wip/backlink.sh b/wip/backlink.sh deleted file mode 100644 index dfbfe4b..0000000 --- a/wip/backlink.sh +++ /dev/null
@@ -1,22 +0,0 @@
1#!/bin/bash
2
3# Variables
4OPTIND=1
5header=""
6blacklist=""
7
8while getopts "h:b:" opt; do
9 case "$opt" in
10 h)
11 header=$OPTARG
12 ;;
13 b)
14 blacklist=$OPTARG
15 ;;
16 esac
17done
18
19shift $((OPTIND - 1))
20
21echo "header = $header"
22echo "blacklist = $blacklist"