From af472eacc1911a37b9db916c4086d817e5cf207c Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 18 Aug 2025 10:59:38 +0200 Subject: Fix for busybox mktemp --- clip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clip') diff --git a/clip b/clip index 9f039f8..b7bab10 100755 --- a/clip +++ b/clip @@ -33,8 +33,8 @@ shift "$((OPTIND - 1))" dir="/tmp/clipdir" mkdir -p "$dir" -file1="$(mktemp -p "$dir" "$(date +%s)".XXXXX)" -file2="$(mktemp -p "$dir" "$(date +%s)"b.XXXX)" +file1="$(mktemp -p "$dir" "$(date +%s)".XXXXXX)" +file2="$(mktemp -p "$dir" "$(date +%s)"b.XXXXX)" echo "created $file1" echo "created $file2" xsel > "$file1" -- cgit v1.3