blob: 3ef5aa4bb2ea7f9b3f154162ffcdc485d3cb6c79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
# Write Poem
# Format of the poem is in the same way as wv.
list() {
out="file date title\n"
for f in $(find $WWW_DEFAULT_PATH/src/poetry -type f | sort -k 3) ; do
out="$out$(basename "$f") $(sed -n 2p $f) $(sed -n 1p $f)\n"
done
printf "$(printf "$out" | column -ts ' ')\n"
}
[ -z "$WWW_DEFAULT_PATH" ] && echo "WWW_DEFAULT_PATH not set" && exit 1
[ -z "$1" ] && echo "You must provide a name" && exit 2
[ "$1" = "ls" ] && list && exit 0
nvim "$WWW_DEFAULT_PATH/src/poetry/$1"
|