https://bugs.kde.org/show_bug.cgi?id=396279
Martin Koller <kol...@aon.at> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REPORTED |RESOLVED Resolution|--- |WORKSFORME --- Comment #2 from Martin Koller <kol...@aon.at> --- You can achieve this already by using a slice-script, e.g. put the following in a script, e.g. ~/scliceScript.sh then start kbackup with the option --script ~/scliceScript.sh The renaming to the original file name ensures that the internal mechanism to reducing to a specified number of backups still work. --------------- #!/bin/sh mode=$1 archive=$2 case "$mode" in "slice_finished" ) gzip -9 ${archive} mv ${archive}.gz ${archive} ;; esac --------------- -- You are receiving this mail because: You are watching all bug changes.