summary refs log tree commit diff stats
path: root/extra/qotd-update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'extra/qotd-update.sh')
-rwxr-xr-xextra/qotd-update.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/qotd-update.sh b/extra/qotd-update.sh new file mode 100755 index 0000000..b199307 --- /dev/null +++ b/extra/qotd-update.sh
@@ -0,0 +1,12 @@
1#!/bin/sh
2# update QOTD
3
4qotd_file=$HOME/qotd.txt
5
6awk '{print;}/~ ~ ~/{exit;}' "$qotd_file" >/tmp/qotd
7echo >>/tmp/qotd
8echo "~ ~ ~" >>/tmp/qotd
9echo >>/tmp/qotd
10fortune >>/tmp/qotd
11
12mv /tmp/qotd "$qotd_file"