#!/bin/sh printf "# Symchan\n" > README.md printf "Art I made of the character symchan, created for my friend Dacctal.\n" >> README.md printf "All of this artwork is licensed under [CC BY-NC-NSA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)\n\n" >> README.md find . -name '*.png' -exec sh -c 'for f do f=${f#./}; printf "![%s](https://git.bwaaa.monster/symchan/plain/%s)\n\n" "$f" "$f"; done' _ {} + >> README.md