diff options
Diffstat (limited to 'scripts/sh/wp')
-rwxr-xr-x | scripts/sh/wp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/sh/wp b/scripts/sh/wp new file mode 100755 index 0000000..3ef5aa4 --- /dev/null +++ b/scripts/sh/wp @@ -0,0 +1,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" |