This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Taken from http://blog.encomiabile.it/2011/02/03/prune-quassel-database/ | |
BAK_PATH="${HOME}/.config/quassel-irc.org/quassel-storage.sqlite.bak" | |
CURRENT_PATH="${HOME}/.config/quassel-irc.org/quassel-storage.sqlite" | |
# first day of data that will be maintained | |
# -7 day means that *every* chatline stored before 8 days ago and so on are going to be eliminated. | |
# only the last 7 days are keeped. | |
DATE_TO_PRUNE='-7 day' |