@ 6a13b6648670c1ebeb37d55b12dedef18b0d943e | history
#!/bin/bash
HERE=$(pwd)
POSTPATH="$HERE/posts"
COWPOSTPATH="$HERE/cowposts"
INFILE="${@: -1}"
(date "+%Y-%m-%d %H:%M:%S" && cowsay "${@:1:($#-1)}" < $INFILE) > "$COWPOSTPATH/$INFILE.cowpost";
mv $INFILE $POSTPATH;