Skip to content

Instantly share code, notes, and snippets.

View selimhex's full-sized avatar
🥴

Szm selimhex

🥴
View GitHub Profile
# creates a bookmarklet from a js file (uses terser - initialized with bun)
# https://github.com/terser/terser
# https://bun.sh/
bookmarkletter() {
local path=${1:-""}
if [[ -z $path ]]; then
echo "no path specified!"
exit 0
fi
if [[ ! -f $path ]]; then