From 8954239662f4bf2caa39d5a3c95e0a29e40ea173 Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch> Date: Tue, 12 Mar 2024 11:41:57 +0100 Subject: [PATCH] show "compressing ..." without line break --- localdump.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localdump.sh b/localdump.sh index 88a9fce..745502c 100755 --- a/localdump.sh +++ b/localdump.sh @@ -114,7 +114,7 @@ # shared function in localdump_* # param string filename of uncompressed output file function compress_file(){ - echo compressing $1 ... + echo -n compressing $1 ... gzip -9 -f "${1}" fetchrc } -- GitLab