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