#!/bin/bash source templates/head.sh source ${cfg[namespace]}/templates/header.shs declare -A strings IFS=$'\n' for i in $(tac storage/faves); do IFS=':' array=($i) if [[ ${array[1]} == '' ]]; then break fi storage[favourites]+="

${array[@]:2:999}

Favourited by ${array[0]}
"; done