sfeed_update: add comment for IFS - sfeed - RSS and Atom parser | |
git clone git://git.codemadness.org/sfeed | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 7f27e5c39dcd64b4c7951e4ff8e31d98a3c12047 | |
parent 6dcce9a9e8e720aca89cf50e5f5def3ea9d57ca2 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 6 Dec 2024 13:17:23 +0100 | |
sfeed_update: add comment for IFS | |
It may not be clearly visible in some editors. | |
Diffstat: | |
M sfeed_update | 1 + | |
1 file changed, 1 insertion(+), 0 deletions(-) | |
--- | |
diff --git a/sfeed_update b/sfeed_update | |
@@ -240,6 +240,7 @@ main() { | |
# parameters are: config, tmpdir, name, feedurl, basesiteurl, encoding | |
if [ "${SFEED_UPDATE_CHILD}" = "1" ]; then | |
[ "$1" = "" ] && exit 0 # must have an argument set | |
+ # IFS is "\037" | |
printf '%s\n' "$1" | \ | |
while IFS="" read -r _config _tmpdir _name _feedurl _basesiteurl _enc… | |
loadconfig "${_config}" |