Skip to content

Instantly share code, notes, and snippets.

@Jip-Hop
Jip-Hop / custom-tinycore.sh
Created April 25, 2021 18:07 — forked from dankrause/custom-tinycore.sh
Create a custom tinycore linux iso. Adjust the config at the beginning of the script, or supply a conf as the first arg. Requires xorriso.
#!/bin/bash
set -e
function cleanup() {
# clean up our temp folder
rm -rf "${TMPDIR}"
}
trap cleanup EXIT