aboutsummaryrefslogtreecommitdiff
path: root/rose-mklink
diff options
context:
space:
mode:
authorNunoSempere <nuno.semperelh@protonmail.com>2024-03-14 15:47:36 -0300
committerNunoSempere <nuno.semperelh@protonmail.com>2024-03-14 15:47:36 -0300
commitd6456e4357a1d2f1480f4ac14e1e00ddba2644b4 (patch)
tree7d5cbd5b2d0f789207d129c048eff00f4d272a73 /rose-mklink
parent94326a8cad79aad2fd89d45503ada0455d644756 (diff)
cleanup & change binary name to rosenrot
Diffstat (limited to 'rose-mklink')
-rwxr-xr-xrose-mklink17
1 files changed, 0 insertions, 17 deletions
diff --git a/rose-mklink b/rose-mklink
deleted file mode 100755
index f016aae..0000000
--- a/rose-mklink
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-test "$1" = "--help" || test -z "$1" && {
- printf "%s\n" "usage: rose-mklink <alias> <url>" \
- "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\nrose %s" "$2" > /usr/bin/$1
- chmod +x /usr/bin/$1
-}