From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Riley Subject: Re: a small remember suggestion Date: Sun, 22 Mar 2009 18:03:32 +0100 Message-ID: <49c66f66.0437560a.6822.28e5@mx.google.com> References: <20524da70903211228o8ef4b21pc9a287ecd923383c@mail.gmail.com> <7bef1f890903211425p1b1329ebxd42b3d7c1a3a77d7@mail.gmail.com> <7bef1f890903211901g29bbc680r1547319ec608e942@mail.gmail.com> <6E22B50C-E9E2-4F09-96EE-19F6BE4C7ABD@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LlR5G-0000bw-Ua for emacs-orgmode@gnu.org; Sun, 22 Mar 2009 13:03:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LlR5F-0000a9-EQ for emacs-orgmode@gnu.org; Sun, 22 Mar 2009 13:03:38 -0400 Received: from [199.232.76.173] (port=58141 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LlR5F-0000a2-8D for emacs-orgmode@gnu.org; Sun, 22 Mar 2009 13:03:37 -0400 Received: from fg-out-1718.google.com ([72.14.220.156]:36612) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LlR5E-0008GW-Og for emacs-orgmode@gnu.org; Sun, 22 Mar 2009 13:03:36 -0400 Received: by fg-out-1718.google.com with SMTP id 19so475725fgg.7 for ; Sun, 22 Mar 2009 10:03:35 -0700 (PDT) In-Reply-To: <6E22B50C-E9E2-4F09-96EE-19F6BE4C7ABD@uva.nl> (Carsten Dominik's message of "Sun, 22 Mar 2009 16:16:45 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: org-mode Carsten Dominik writes: > > Note that, if you use remember frequently, you will create > a lot of these files. So maybe we need to think of an expiry > mechanism? Like, remove any files older than a few days? If anyone wants to do this deletion manually, I do this in a script which backs up mysql databases (linux bash shell) to keep the directory pruned: ,---- | find ./*.zip2 -mtime +10 -exec rm {} \; `---- i.e delete all zip2 files older than ten days.