diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-29 23:45:49 +0300 |
commit | 286b71a6ead8c7234cfbc0b8ece05c8239a4f32c (patch) | |
tree | f4662c1517fe14018d93c5503a72b8ba9da0c674 /bin/ak-unfollow | |
parent | b5394a6bd9f0b9fbd9bafc3e963dafbbc87f2ed2 (diff) | |
download | arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.gz arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.tar.bz2 arching-kaos-tools-286b71a6ead8c7234cfbc0b8ece05c8239a4f32c.zip |
Renamed everything
Diffstat (limited to 'bin/ak-unfollow')
-rwxr-xr-x | bin/ak-unfollow | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bin/ak-unfollow b/bin/ak-unfollow new file mode 100755 index 0000000..6b9e1d6 --- /dev/null +++ b/bin/ak-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 + + |