aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.com>2021-12-26 07:15:45 +0200
committerkaotisk <kaotisk@arching-kaos.com>2021-12-26 07:15:45 +0200
commit6ad3011ba81cdca601f3598d2b10139c7b395b5a (patch)
tree9ae0ef27b5fc56469e4c1909f9ae22769086b777
parent811bf46ff36ff7ad939318b26bccc1b9715dc427 (diff)
downloadarching-kaos-tools-6ad3011ba81cdca601f3598d2b10139c7b395b5a.tar.gz
arching-kaos-tools-6ad3011ba81cdca601f3598d2b10139c7b395b5a.tar.bz2
arching-kaos-tools-6ad3011ba81cdca601f3598d2b10139c7b395b5a.zip
Added tool for list following artifacts, started on Sun 26 Dec 07:12:53 EET 2021
-rwxr-xr-xbin/following10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/following b/bin/following
new file mode 100755
index 0000000..b333e50
--- /dev/null
+++ b/bin/following
@@ -0,0 +1,10 @@
+#!/bin/bash
+FOLLOWING="$HOME/.arching-kaos/following"
+if [ -f $FOLLOWING ]
+then
+ cat $FOLLOWING
+else
+ logthis "No following file, creating"
+ touch $FOLLOWING
+ echo "None found"
+fi