This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues/pull-requests.
tildetown-scripts/scripts/tweet

12 lines
180 B
Bash
Executable File

#!/bin/bash
collect=
while read -r; do
collect="$collect / $REPLY"
done
status=$(echo $collect | sed -r 's/^.{2}//')
twurl -X POST "/1.1/statuses/update.json?status=$status"