summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-04-20 16:48:12 +1200
committerDavid Phillips <david@sighup.nz>2017-04-20 16:48:12 +1200
commit530bb156334603e41eb8ac3fa08875a5e5ef65a0 (patch)
tree8dbed8a6dea1d3e7637391d54640ed66b2d0acd4
parentd4f134015e7a51177e78b31c97403ec8a549363d (diff)
downloaddotfiles-530bb156334603e41eb8ac3fa08875a5e5ef65a0.tar.xz
Delete old yardle-cache-analyse
-rwxr-xr-xlocal/bin/yardle-cache-analyse11
1 files changed, 0 insertions, 11 deletions
diff --git a/local/bin/yardle-cache-analyse b/local/bin/yardle-cache-analyse
deleted file mode 100755
index 9ec3eb4..0000000
--- a/local/bin/yardle-cache-analyse
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-if [ -z $1 ]; then
- echo Usage: $0 '<cache_dir>'
- exit 1
-fi
-
-ls -1 $1 | while read -r file ; do
- ts=$(head -n 1 $1/$file)
- echo Created $(date --date=@$ts), $file
-done