xxwhirlpool
·
2026-05-21
1#!/usr/bin/env bash
2#
3# open a temp file as a scratchpad
4
5file="$(mktemp --suffix _scratchpad)"
6
7micro "$file"
8
9gum_echo "FILEPATH:"
10realpath "$file" | lolcat -p 1.5
1#!/usr/bin/env bash
2#
3# open a temp file as a scratchpad
4
5file="$(mktemp --suffix _scratchpad)"
6
7micro "$file"
8
9gum_echo "FILEPATH:"
10realpath "$file" | lolcat -p 1.5