utils/bash/bashrc/sources/50_blog

17 lines
298 B
Plaintext
Raw Normal View History

2014-08-04 09:40:25 +00:00
#!/bin/bash
function blog () {
2017-04-21 08:48:07 +00:00
if [[ -z `command -v cj` ]]; then
2014-08-04 09:40:25 +00:00
echo "Cannot find cj"
return 1
fi
if [[ -z "$1" ]]; then
__func_head "CONTENT(CJ)"
echo
else
FILE=$(date +%Y%m%d)
echo "$1 " | xargs -d' ' cj >> ~/blog/$FILE
fi
}