diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index f358ce96626246993c88a4dcf94a092b380cb9a9..8af3e6e0749cff4b7e349356b92b911001f6d00f 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -119,7 +119,7 @@ 				read status_id
 				if [ "$status_id" = 's' ]; then
 					sharemode=0
 				else 
-					share_api_status $status_id >> /dev/null
+					share_api_status $status_id
 					echo $http_code
 				fi
 			done
@@ -133,7 +133,7 @@ }
 
 share_api_status()
 {
-	curl -w "%{http_code}" -X POST -s --compressed -H "Authorization: Bearer $auth" --url $instance_point/statuses/$1/reblog
+	curl -w "%{http_code}" -X POST -s --compressed -H "Authorization: Bearer $auth" --url $instance_point/statuses/$1/reblog --output /dev/null
 }
 
 write_api_status()
