aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-unfollow
blob: c574b79c60d4ee4037f2adfbe515f240f31c6e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
			ak-logthis "IPFS problem"
		fi
	else
		ak-logthis "sed didn't found $search"
	fi
else
	echo "Who to unfollow?"
	echo "Type following to see them"
fi