Skip to content

Instantly share code, notes, and snippets.

@DegenCoden
DegenCoden / wt.sh
Created October 20, 2021 20:27
wt.sh - watch torrents
#! /usr/bin/env bash
for p in btfs curl fusermount fzf jq xdg-open; do
command -v "$p" 2>&1 > /dev/null || {
echo >&2 "Dependency $p not found.";
exit 1;
}
done
function usage() {