blob: f9494889fe7794caafea7cbf9e23bb1a6981afe0 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/bin/sh
# load config (evaluate shellscript).
# loadconfig(configfile)
loadconfig() {
# allow to specify config via argv[1].
if [ "$1" != "" ]; then
# get absolute path of config file required for including.
config="$1"
configpath=$(readlink -f "${config}" 2>/dev/null)
else
# default config location.
config="$HOME/.sfeed/sfeedrc"
configpath="${config}"
fi
# config is loaded here to be able to override $sfeedpath or functions.
if [ -r "${configpath}" ] && [ -f "${configpath}" ]; then
. "${configpath}"
else
printf "Configuration file \"%s\" cannot be read.\n" "${config}" >&2
echo "See the sfeedrc.example file or the sfeedrc(5) man page for an example." >&2
exit 1
fi
}
# override feed function to output OPML XML.
# feed(name, feedurl, [basesiteurl], [encoding])
feed() {
# uses the characters 0x1f and 0x1e as a separator.
printf '%s\037%s\036' "$1" "$2"
}
# load config file.
loadconfig "$1"
cat <<!
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>OPML export</title>
</head>
<body>
!
feeds | LC_ALL=C awk '
BEGIN {
FS = "\x1f"; RS = "\x1e";
}
{
gsub("&", "\\&");
gsub("\"", "\\"");
gsub("'"'"'", "\\'");
gsub("<", "\\<");
gsub(">", "\\>");
print "\t<outline type=\"rss\" title=\"" $1 "\" text=\"" $1 "\" xmlUrl=\"" $2 "\"/>";
}'
cat <<!
</body>
</opml>
!
|