Skip to content

Instantly share code, notes, and snippets.

View Craterdome's full-sized avatar

Matthew Farver Craterdome

View GitHub Profile
@Craterdome
Craterdome / convert_url_file.sh
Last active April 11, 2025 16:18 — forked from GeoffreyPlitt/convert_url_files_to_bookmarks.sh
Convert a text file of urls (urls.txt) to a bookmarks.html file that can be imported into a browser
#!/bin/bash
#
# Run this script on a file named urls.txt with all your URLs and pipe the output to an HTML file.
# Example: ./convert_url_file.sh > bookmarks.html
# Based on changes from Jan van den Berg: https://j11g.com/2019/08/15/create-a-chrome-bookmark-html-file-to-import-list-of-urls/
echo "<!DOCTYPE NETSCAPE-Bookmark-file-1>"
echo '<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">'
echo '<TITLE>Bookmarks</TITLE>'
echo '<H1>Bookmarks</H1>'