From d66d449d60b0985b05c17dc27416601562cb4035 Mon Sep 17 00:00:00 2001 From: gnat Date: Sun, 6 Oct 2024 06:13:48 -0700 Subject: [PATCH] add optional name argument to make-link script --- scripts/make-link | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/make-link b/scripts/make-link index 79aa553..21afb5e 100755 --- a/scripts/make-link +++ b/scripts/make-link @@ -1 +1,5 @@ -echo "$1" +if [ -z "${2}" ]; then + echo "$1" +else + echo "$2" +fi