From 2492a5f0d04eb46b7170b8c17a49dfcc8dbfae96 Mon Sep 17 00:00:00 2001 From: frode-h Date: Thu, 18 Apr 2024 18:54:56 +0200 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 431be1c..040f355 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ To build a Debian package of this project, follow these steps: To change the atime of the files belonging to a package you can run something like this: ``` +sudo apt -y install cowsay export DATE=$(date -d "7 days ago" +%Y%m%d%H%M) for file in `dpkg -L cowsay` ; do sudo touch -a -t $DATE $file; done ```