💾 Archived View for beta.lyk.so › systems › food › scripts › scraping-foodista › flatten-html-cache.… captured on 2023-11-04 at 11:29:31.
⬅️ Previous capture (2021-12-04)
-=-=-=-=-=-=-
#!/usr/bin/env sh set -e find "$1" -type f | while read f; do tmp="$(echo "$f" | rev | cut -d/ -f-2 | rev)" new="$(echo "$tmp" | cut -d/ -f2)-$(echo "$tmp" | cut -d/ -f1)" mv "$f" "$1/$new" rmdir "$(dirname "$f")" done