author=`read_and_escape_file "$author_file" | head -1`
uuid=`read_and_escape_file "$uuid_file" | head -1`
tmp_snippets_dir=.tmp_feed_snippets
author=`read_and_escape_file "$author_file" | head -1`
uuid=`read_and_escape_file "$uuid_file" | head -1`
tmp_snippets_dir=.tmp_feed_snippets
n_snippet_files=`ls -1 ./${metadata_dir}/*.feed_snippet 2>/dev/null | wc -l`
if [ $n_snippet_files != 0 ]
then
mod_dates=$(grep -hE "^<updated>" ./${metadata_dir}/*.feed_snippet | sed -E 's/<.?updated>//g')
fi
n_snippet_files=`ls -1 ./${metadata_dir}/*.feed_snippet 2>/dev/null | wc -l`
if [ $n_snippet_files != 0 ]
then
mod_dates=$(grep -hE "^<updated>" ./${metadata_dir}/*.feed_snippet | sed -E 's/<.?updated>//g')
fi
for date in $mod_dates; do
date_unix=$(date -u "+%s" -d "${date}")
if [ "$date_unix" -gt "$last_mod_unix" ]; then
last_mod_unix=$date_unix
fi
done
for date in $mod_dates; do
date_unix=$(date -u "+%s" -d "${date}")
if [ "$date_unix" -gt "$last_mod_unix" ]; then
last_mod_unix=$date_unix
fi
done
-lastmod_rfc3339=`date -u "+%Y-%m-%dT%TZ" -d "@${last_mod_unix}"`
-printf "<updated>%s</updated>\n\n" "$lastmod_rfc3339"
+last_mod_rfc3339=`date -u "+%Y-%m-%dT%TZ" -d "@${last_mod_unix}"`
+printf "<updated>%s</updated>\n\n" "$last_mod_rfc3339"