Converter for pirate/bookmark-archiver that converts a plain-text list of urls into something it can understand.
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 | |
set -o errexit | |
set -o nounset | |
############## | |
# This program converts a plain-text list of urls to the | |
# bookmark-archiver HTML format. | |
# | |
# Requirements: curl, xidel | |
# Usage: | |
# ./plaintext-convert.sh [{filename}] | |
# | |
# The filename is optional. If specified, the specified file will be | |
# read. If not, then stdin will be used instead. | |
# | |
# Examples: | |
# ./plaintext-convert.sh <path/to/file >list.html | |
# ./plaintext-convert.sh urls.txt >urls.html | |
# | |
############## | |
date=$(date +%s) | |
egrep --only-matching 'http(s)?\://[^ "\*\*"]*' <"${1:-/dev/stdin}" | while read pageurl; do | |
date=$(( $date + 1 )) | |
# Extract webpage title | |
pagetitle=$(curl "${pageurl}" -Ss | xidel --data - --css "title" --quiet) | |
if [ "$pagetitle" = "" ]; then pagetitle="$pageurl"; fi | |
echo "<dt><a href=\"$pageurl\" add_date=\"$date\">$pagetitle</a></dt>"; | |
echo "[info] Processing $pageurl" >&2; | |
done; | |
echo "[info] Completed" >&2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment