diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/following | 10 |
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 |