#!/bin/bash
# automatic view farm for JustPaste using Vivaldi
# was used to farm views for 't cards short'
while true; do
vivaldi --new-tab "https://justpaste.app/p/oipu7j" &
VIVALDI_PID=$!
sleep 2.5
kill $VIVALDI_PID
sleep 0.1
done43 views