diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index ff3f922048edac19231470ce6c2ebd495ddd40c5..2a4e2540bc788b2d5f12d9f35252de23aaee961a 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -78,8 +78,9 @@ 		
 		while [ $indexator -gt 0 ]; do
 			status=$(echo $json | jj $indexator)
 			uri=$(echo $status | jj uri)
+			id_status=$(echo $status | jj id)
 			dateutc=$(echo $status | jj created_at)
-			echo "$(date -d $dateutc) <-> $uri"
+			echo "$(date -d $dateutc) <$id_status> $uri"
 			echo $status | jj content | sed -e 's/<br[^>]*>/\n/g ; s/<[^>]*>//g ; s/&gt;*/>/g ; s/&lt;*/</g ; s/&quot;/"/g'
 			attachments=$(echo $status | jj -l media_attachments.#.remote_url | sed 's/"//g')
 			if [ -n "$attachments" ]; then
@@ -90,7 +91,7 @@ 			indexator=$(expr $indexator - 1)
 			echo '_____'
 		done
 		indexator=$(expr $max_statuses - 1)
-		menu=$(echo 'Prev\nNext\nMain menu' | fzy)
+		menu=$(echo 'Prev\nNext\nShare\nMain menu' | fzy)
 		case $menu in
 			"Prev") 
 			echo '#EXTM3U' > attachments.m3u8
@@ -104,11 +105,29 @@ 			clear
 			offset=$(jj -i preload 0.id)
 			json=$(timeline_api $offset) 
 			;;
+			"Share")
+			echo 'Input id (s - stop)'
+			sharemode=1
+			while [ $sharemode -eq 1 ]; do
+				read status_id
+				if [ "$status_id" = 's' ]; then
+					sharemode=0
+				else 
+					share_api_status $status_id >> /dev/null
+					echo $http_code
+				fi
+			done
+			;;
 			"Main menu")
 			sub_menu_lvl=0 ;;
 		esac
 	done
 		
+}
+
+share_api_status()
+{
+	curl -w "%{http_code}" -X POST -s --compressed -H "Authorization: Bearer $auth" --url $instance_point/statuses/$1/reblog
 }
 
 write_api_status()
