Files
dotfiles/utils/.local/bin/scratch
2026-02-21 18:10:09 +08:00

20 lines
308 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
cat <<EOF
Usage: $(basename "$0") [-h]
Open a temporary scratchpad file in \$EDITOR.
Options:
-h, --help Show this help message
EOF
exit 0
fi
file="$(mktemp)"
echo "Editing $file"
exec "$EDITOR" "$file"