blob: 8c1caad9bcf5cf26584ed45e09ac75020eca612b (
plain) (
blame)
1
2
3
4
5
6
7
|
function tj -d "Log to the daily journal - wrapper round _tj script" --argument-names 'message'
if test -n "$message"
echo "$message" | _tj
else
echo "Please give me your message, wrapped in quotes."
end
end
|