about summary refs log tree commit diff stats
path: root/trunk/first-lines.sh
diff options
context:
space:
mode:
authorCase Duckworth2015-04-14 16:36:17 -0700
committerCase Duckworth2015-04-14 16:36:17 -0700
commit9fce418b46c9f0894f429384ef9e3dabaeffbeb4 (patch)
treeb2339220ee50cf48b8887f0cc1fed4813a95901b /trunk/first-lines.sh
parentAdd toc metadata (diff)
downloadautocento-9fce418b46c9f0894f429384ef9e3dabaeffbeb4.tar.gz
autocento-9fce418b46c9f0894f429384ef9e3dabaeffbeb4.zip
Change file hierarchy and rewrite makefile
- File hierarchy is now as follows:
    - /
        - appendix/  < appendix source files
        - backlinks/ < backlink sources & builds
        - hapax/     < *.hapax source files
        - scripts/   < scripts, like *.js, *.hs, etc.
        - templates/ < templates for outputs
        - text/      < source files
        - trunk/     < assets, like css, images, heads, etc.
        - index.html
        - *.html
        - Makefile
Diffstat (limited to 'trunk/first-lines.sh')
-rw-r--r--trunk/first-lines.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/trunk/first-lines.sh b/trunk/first-lines.sh deleted file mode 100644 index 1378a82..0000000 --- a/trunk/first-lines.sh +++ /dev/null
@@ -1,26 +0,0 @@
1#!/bin/bash
2
3outFile="$1";
4shift 1;
5glob="$@";
6
7firstLineOf() { # $1 = file
8 endOfYaml=$(sed -n '/^\.\.\.$/=' "$1")
9 tryLineNumber=$((endOfYaml + 1))
10 try=""
11 while [[ -z $try ]]; do
12 try=$(head -n $tryLineNumber "$1" | tail -n 1 |\
13 sed -e 's/^[|>] //' -e 's/[][]//g' -e 's/^#.*//' -e 's/^--.*//')
14 (( tryLineNumber += 1 ))
15 done
16 echo "$try"
17}
18
19echo -n "Compiling ${outFile}"
20
21for file in $glob; do
22 # Copy first line to $outFile & link
23 echo "[$(firstLineOf "$file")](${file%.*}.html)" >> $outFile;
24 echo -n ".";
25done
26echo "Done."