Skip more stuff

This commit is contained in:
askiiart 2023-09-25 14:46:31 -05:00
parent c3e15f50d7
commit 9e3bf5de9f
No known key found for this signature in database
GPG key ID: 94789D499CBE78CE
2 changed files with 3 additions and 15 deletions

View file

@ -15,8 +15,8 @@ done
# Based off https://en.wikipedia.org/wiki/RSS, particularly the example
printf "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<rss version=\"2.0\">\n\n<channel>\n <title>askiiart.net</title>\n <description>The feed for askiiart.net, I guess</description>\n <link>https://askiiart.net</link>\n <lastBuildDate>$(TZ='UTC' date --rfc-2822)</lastBuildDate>" > feed.xml
find . -name "*.html" | while read -r item; do
# Skip template.html
if [[ ${item} == "./template.html" ]]; then
# Skip template.html, wishlist.html, resume.html, and portfolio.html
if [[ ${item} == "./template.html" || ${item} == "./wishlist.html" || ${item} == "./resume.html" || ${item} == "./portfolio.html" ]]; then
continue
fi
item="${item%.*}"