From 86aa9106090a0219bac30bc12f5a5bd91949afd9 Mon Sep 17 00:00:00 2001 From: sigoden Date: Sat, 16 Nov 2024 11:09:40 +0800 Subject: refactor: improve bash code (#125) * refactor: extract guard_path to utils/guard_path.sh * add utils/guard_operation.sh --- utils/guard_operation.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 utils/guard_operation.sh (limited to 'utils/guard_operation.sh') diff --git a/utils/guard_operation.sh b/utils/guard_operation.sh new file mode 100755 index 0000000..1e7f1ed --- /dev/null +++ b/utils/guard_operation.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +# Guard an operation with a confirmation prompt. + +main() { + if [ -t 1 ]; then + confirmation_prompt="${1:-"Are you sure you want to continue?"}" + read -r -p "$confirmation_prompt [Y/n] " ans + if [[ "$ans" == "N" || "$ans" == "n" ]]; then + echo "error: aborted!" 2>&1 + exit 1 + fi + fi +} + +main "$@" -- cgit v1.2.3