Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
iced depresso (icedquinn@blob.cat)'s status on Saturday, 11-Nov-2023 09:12:10 JST iced depresso
@critical @ryan @mametsuko :blobcatadorable: what
i just have sort pluck a random file from a folder, upload it and move it to a spent folder.
```
#!/usr/bin/fish
cd /home/icedquinn/scripts/posts/queue
set post (ls -1 | shuf | head -n1)
if test ! -n "$post"
echo "Nothing to post!"
exit
end
#curl -H "Title: Scheduled post sending" 192.168.1.133/stuff -d @"$post"
toot post < "$post"
and mv "$post" "../spent/$post"
and echo "Posted $post"
```