blob: 83bda1d16d95659085bd97df49ebf270b47ce34e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#!/bin/sh
# wv: write a word-vomit.
# TODO: add -w flag for setting website.
usage() {
echo "wv [-h | ideas | ls | stats | per-day | per-month | NUMBER]"
}
stats() {
total_ent="$(exec ls "$WWW_DEFAULT_PATH/src/wv" | sed 's/\([0-9]\+\).*/\1/g' | sort -n | tail -1)"
total_wc="$(wc -w $WWW_DEFAULT_PATH/src/wv/* | tail -n 1 | awk '{ print $1 }')"
avg_wc="$(($total_wc / $(echo $total_ent | sed 's/^0*//') ))"
echo "Total entries: $total_ent"
echo "Total wordcount: $total_wc"
echo "Avg wordcount: $avg_wc"
}
stats_html() {
total_ent="$(exec ls "$WWW_DEFAULT_PATH/src/wv" | sed 's/\([0-9]\+\).*/\1/g' | sort -n | tail -1)"
total_wc="$(wc -w $WWW_DEFAULT_PATH/src/wv/* | tail -n 1 | awk '{ print $1 }')"
avg_wc="$(($total_wc / $(echo $total_ent | sed 's/^0*//') ))"
printf "<ul>\n<li>Total entries: $total_ent</li>\n<li>Total word count: $total_wc</li>\n<li>Average word count: $avg_wc</li>\n</ul>"
}
list() {
out="file date wc title\n"
for f in $(find $WWW_DEFAULT_PATH/src/wv -type f | sort -k 3) ; do
out="$out$(basename "$f") $(sed -n 2p $f) $(wc -w "$f" | awk '{print $1}') $(sed -n 1p $f)\n"
done
printf "$out"
}
list_html() {
out="<table>\n<tr><th>Index</th>\t<th>Date</th>\t<th>Word count</th>\t<th>Title</th></tr>\n"
for f in $(find $WWW_DEFAULT_PATH/src/wv -type f | sort -rk 3) ; do
out="$out\t<tr><td>$(basename "$f")</td> <td>$(sed -n 2p $f)</td> <td>$(wc -w "$f" | awk '{print $1}')</td> <td><a href=\"/wv/$(basename "$f")\">$(sed -n 1p $f)</a></td></tr>\n"
done
out="$out\n</table>"
printf "$out"
}
perday() {
list | awk '{print $2}' | grep -v 'date' | sort | uniq -c | sort -n
}
permonth() {
for f in $(find $WWW_DEFAULT_PATH/src/wv -type f | sort -k 3) ; do
out="$out$(sed -n 2p $f | cut -c1-7)\n"
done
printf "$(printf "$out" | uniq -c)\n"
}
current() {
total_ent="$(exec ls "$WWW_DEFAULT_PATH/src/wv" | sed 's/\([0-9]\+\).*/\1/g' | sort -n | tail -1)"
printf "$total_ent\n" | sed 's/^0*//'
}
latest_entry() {
latest_ent="$(exec ls "$WWW_DEFAULT_PATH/src/wv" | sed 's/\([0-9]\+\).*/\1/g' | sort -n | tail -1)"
echo "$(sed -n 2p "$WWW_DEFAULT_PATH/src/wv/$latest_ent")"
}
first_entry() {
first_ent="$(exec ls "$WWW_DEFAULT_PATH/src/wv" | sed 's/\([0-9]\+\).*/\1/g' | sort -n | head -n1)"
echo "$(sed -n 2p "$WWW_DEFAULT_PATH/src/wv/$first_ent")"
}
[ -z "$WWW_DEFAULT_PATH" ] && echo "WWW_DEFAULT_PATH not set" && exit 1
[ "$1" = "-h" ] && usage && exit 0
[ "$1" = "help" ] && usage && exit 0
[ "$1" = "ls" ] && list && exit 0
[ "$1" = "ls-html" ] && list_html && exit 0
[ "$1" = "ideas" ] && spr "wv-ideas" && exit 0
[ "$1" = "stats" ] && stats && exit 0
[ "$1" = "stats-html" ] && stats_html && exit 0
[ "$1" = "per-day" ] && perday && exit 0
[ "$1" = "per-month" ] && permonth && exit 0
[ "$1" = "latest-entry" ] && latest_entry && exit 0
[ "$1" = "first-entry" ] && first_entry && exit 0
[ "$1" = "current" ] && current && exit 0
[ ! -z "$1" ] && nvim "$WWW_DEFAULT_PATH/src/wv/$(printf "%04d" "$1")" && exit 0
number="na"
for i in $(seq -w 1 1000) ; do
if [ ! -e "$WWW_DEFAULT_PATH/src/wv/$i" ] ; then
number="$i"
break
fi
done
[ "$number" = "na" ] && echo "exhausted range" && exit 1
nvim "$WWW_DEFAULT_PATH/src/wv/$number"
|