From 5922c491a4aaeea0df85fe74e68a83b0f4e4f14b Mon Sep 17 00:00:00 2001 From: Djan <> Date: Thu, 7 Oct 2021 12:57:36 +0200 Subject: [PATCH] bobadeleter ; adding quotes to archives names --- borgaliasandfunctions.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/borgaliasandfunctions.txt b/borgaliasandfunctions.txt index a33e877..be85f6c 100644 --- a/borgaliasandfunctions.txt +++ b/borgaliasandfunctions.txt @@ -327,6 +327,8 @@ function bobadeleter { $EDITOR $file sed -i '/^#/d' $file #remove lines without "#" + sed -i 's/^/"/' $file # add quotes in the beginnning of lines + sed -i 's/$/"/' $file # add quotes ine the end of lines paste -s -d " " $file > file_temp rm $file;mv file_temp $file