utilies

A handful of (useful) scripts for unix-like systems
Log | Files | Refs | README | LICENSE

commit 2ebbcc28b910e9b0d53229cb0d952ad89c7ebf08
parent a35cd8abb27a40d46552e133651fc2a709358f53
Author: Rikard Karlsen <rk@cassettian.space>
Date:   Mon, 11 Oct 2021 21:44:07 +0200

fix(addscript): it didn't work

Diffstat:
Maddscript | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addscript b/addscript @@ -8,6 +8,6 @@ _filename="$HOME/.local/bin/$1" touch "$_filename" chmod +x "$_filename" -echo -e "#! /bin/sh\n\n" > "$_filename" +echo "#!/bin/sh\n\n" > "$_filename" nvim "$_filename"