This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
url=http://redefininggod.com | |
webarchive=https://web.archive.org | |
wget="wget -e robots=off -nv" | |
tab="$(printf '\t')" | |
additional_url=url.list | |
# Construct listing.txt from url.list | |
# The list of archived pages, including some wildcard url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Named-Param vsprintf() | |
* | |
* positional-params based on key name, much the same as positional in sprintf() | |
* | |
* @link http://php.net/manual/en/function.sprintf.php | |
* @link http://www.php.net/manual/en/function.vsprintf.php | |
* | |
* @param string $str format string - replacements are in %KEY$x format |