summaryrefslogtreecommitdiff
path: root/sfeed_markread
blob: a40e57272da821746453ecdd7aff93f16fddf42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
# Mark items as read/unread: the input is the read / unread URL per line.

usage() {
	echo "usage: $0 <read|unread> [urlfile]" >&2
	echo "" >&2
	echo "An urlfile must be specified as an argument or with the environment variable \$SFEED_URL_FILE" >&2
	exit 1
}

urlfile="${2:-${SFEED_URL_FILE}}"
if test -z "${urlfile}"; then
	usage
fi

case "$1" in
read)
	cat >> "${urlfile}"
	;;
unread)
	tmp=$(mktemp)
	trap "rm -f ${tmp}" EXIT
	test -f "${urlfile}" || touch "${urlfile}" 2>/dev/null
	LC_ALL=C awk -F '\t' '
	{ FILENR += (FNR == 1) }
	FILENR == 1 { urls[$0] = 1 }
	FILENR == 2 { if (!urls[$0]) { print $0 } }
	END { exit(FILENR != 2) }' \
		"-" "${urlfile}" > "${tmp}" && \
		cp "${tmp}" "${urlfile}"
	;;
*)
	usage
	;;
esac