Pastery

clonesite +

 1#!/bin/sh 2 3# Create a temp dir. 4TMPDIR=`mktemp -d` 5 6echo $TMPDIR 7cd $TMPDIR 8 9# Mirror site to $TMPDIR.10wget --adjust-extension --convert-links --page-requisites --no-directories "$1"1112# Rename (all) html files to index.html. Hopefully there will never be more than one.13rename -v "s/.*\.html(\$|\?)/index.html/" $TMPDIR/*1415# Add to IPFS.16HASH=$(ipfs add -Q --pin=false -r $TMPDIR)17echo "Copied to clipboard: https://www.eternum.io/ipfs/$HASH/"18echo "https://www.eternum.io/ipfs/$HASH/" | xsel -b1920# Delete temp dir.21rm -rf $TMPDIR
New paste