mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 18:50:34 -05:00
6 lines
206 B
Bash
Executable file
6 lines
206 B
Bash
Executable file
#!/usr/bin/env sh
|
|
mv static/data/toots.json static/data/toots.old.json
|
|
SERVER=https://fosstodon.org
|
|
MID=108219415927856966
|
|
curl "$SERVER/api/v1/accounts/$MID/statuses" -o static/data/toots.json
|
|
echo "Done"
|