Torge is a handy shell script designed to simplify the search for torrent links across multiple sites. With support for various popular platforms and customizable aliases, Torge streamlines the process, making it efficient to find the desired links and copy them directly to your clipboard.
torge is a versatile shell script designed for searching and obtaining links from various torrent sites. This tool streamlines the process of finding torrents, enabling users to quickly locate content across several sources with just a few commands.
torge supports a variety of torrent sites, including:
Easy Integration: Enhance usability by creating aliases for frequently used searches:
alias tpb='torge tpb'
alias libgen='torge libgen'
alias limetorrents='torge lt'
alias nyaa='torge nyaa'
alias 1337x='torge 1337x'
alias rarbg='torge rarbg'
Flexible Search Options: Utilize different commands to refine search results by date, size, or other criteria. Examples include:
torge tpb -s size -r linux iso ```
torge libgen -p 2 -m science evolution ```
torge SOURCE --csv -D '\t' your search query
- **Additional Functionalities**: Integrate with your clipboard or transmission tools for enhanced efficiency:
```shell
ftorge() {
res="$(torge "$@" --no-clipboard --no-prompt --choose 'fzf --ansi --multi | cut -f1 | paste -sd ,')"
[ "$?" -ne '0' ] && return
if [ "$1" = 'libgen' ]; then
{
echo -n 'wget '
sed "s/^/'/;s/$/'/" <<< "$res" | paste -sd ' '
} | xclip -r -sel clip
else
for i in $res; do
transmission-remote -a "$i"
done
fi
}
This simplified scripting solution for torrent link searches allows easier access to content, and added configurations enable tailored usage to fit various needs. Ideal for users who often toggle between multiple sites to find desired torrents.
No comments yet.
Sign in to be the first to comment.