#!/bin/sh if [ $# -eq 0 ]; then echo echo " Usage: $0 [OUTPUT FILE]" echo echo " Transforms a page saved with SingleFileZ into a SingleFile page." echo echo " Arguments:" echo echo " INPUT FILE: path to a file containing a page saved with SingleFileZ" echo " OUTPUT FILE: path of the output file" echo exit 1 else deno run --allow-read --allow-write ./sfz2sf.js "$1" "$2" fi