From d6456e4357a1d2f1480f4ac14e1e00ddba2644b4 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Thu, 14 Mar 2024 15:47:36 -0300 Subject: cleanup & change binary name to rosenrot --- rosenrot-mklink | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 rosenrot-mklink (limited to 'rosenrot-mklink') diff --git a/rosenrot-mklink b/rosenrot-mklink new file mode 100755 index 0000000..d8f5be6 --- /dev/null +++ b/rosenrot-mklink @@ -0,0 +1,17 @@ +#!/bin/sh + +test "$1" = "--help" || test -z "$1" && { + printf "%s\n" "usage: rosenrot-mklink " \ + "Create a /usr/bin link to a website." + exit +} + +test -z "$2" || { + test -f "/usr/bin/$1" && { + echo "/usr/bin/$1 already exists, remove it first" + exit 1 + } + + printf "#!/bin/sh\n\nrosenrot %s" "$2" > /usr/bin/$1 + chmod +x /usr/bin/$1 +} -- cgit v1.2.3