summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-07-09 21:26:05 +0300
committerPaul Buetow <paul@buetow.org>2023-07-09 21:26:05 +0300
commit5c0d59f773d686ee7415d145dfcdea46fc0f57a4 (patch)
tree969b4082b0919bb6adf24dcc941c19459ffc7f1c
parentd5c1a2e124f025a9aa966a3e3957bc2bfa704977 (diff)
add stat
-rw-r--r--frontends/scripts/warrior.sh.tpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/frontends/scripts/warrior.sh.tpl b/frontends/scripts/warrior.sh.tpl
index f02cbc3..3dd168e 100644
--- a/frontends/scripts/warrior.sh.tpl
+++ b/frontends/scripts/warrior.sh.tpl
@@ -1,7 +1,11 @@
PATH=$PATH:/usr/local/bin
+# These .task.status files were synced by my Laptops to the server.
find /home -maxdepth 2 -mindepth 2 -type f -name .task.status \
| while read file; do
echo $file:
cat $file
+ echo
+ stat $file
+ echo
done