From 36d1221256009ba65b7ea74b68516f3f8434939c Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Fri, 26 Dec 2025 00:02:44 +0200 Subject: [PATCH] Parse flag-like inputs as literal names --- .local/bin/run0edit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.local/bin/run0edit b/.local/bin/run0edit index 279f419..8a8b033 100755 --- a/.local/bin/run0edit +++ b/.local/bin/run0edit @@ -30,7 +30,7 @@ make_editable_copy() { orig_file="$1" tempfile="$2" - try_command cp "${orig_file}" "${tempfile}" + try_command cp -- "${orig_file}" "${tempfile}" } elevate_permissions() { @@ -45,13 +45,13 @@ update_file() { tempfile="$1" orig_file="$2" - try_command mv --force "${tempfile}" "${orig_file}" + try_command mv --force -- "${tempfile}" "${orig_file}" } clean_tempfiles() { tempfile="$1" - rm --force "${tempfile}" "${tempfile}.orig" + rm --force -- "${tempfile}" "${tempfile}.orig" } if [ "$#" -ne "1" ]; then