diff options
author | kaotisk <kaotisk@arching-kaos.com> | 2021-12-26 07:11:11 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.com> | 2021-12-26 07:11:11 +0200 |
commit | 811bf46ff36ff7ad939318b26bccc1b9715dc427 (patch) | |
tree | 1f5fc0c83849f42cf4ccc6ab56b91fd10e030cbb | |
parent | 92ae94d36bfb8730b8c07f14feca990e0701bb43 (diff) | |
download | arching-kaos-tools-811bf46ff36ff7ad939318b26bccc1b9715dc427.tar.gz arching-kaos-tools-811bf46ff36ff7ad939318b26bccc1b9715dc427.tar.bz2 arching-kaos-tools-811bf46ff36ff7ad939318b26bccc1b9715dc427.zip |
Added tool for unfollowing, started on Sun 26 Dec 06:58:08 EET 2021
-rwxr-xr-x | bin/unfollow | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bin/unfollow b/bin/unfollow new file mode 100755 index 0000000..6b9e1d6 --- /dev/null +++ b/bin/unfollow @@ -0,0 +1,25 @@ +#!/bin/bash +FOLLOWING="$HOME/.arching-kaos/following" +fentries="$(cat $FOLLOWING)" +if [ ! -z $1 ] +then + search="$1" + sed -i -e 's,'"$search"',,g' $FOLLOWING + if [ $? == 0 ] + then + IPFS="$(ipfs add -q $FOLLOWING)" + if [ $? == 0 ] + then + profile set repositories "$IPFS" + else + logthis "IPFS problem" + fi + else + logthis "sed didn't found $search" + fi +else + echo "Who to unfollow?" + echo "Type following to see them" +fi + + |