You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
# download release by rss urlredl -sf"https://sourceforge.net/projects/mpv-player-windows/rss?path=/64bit" -p"x86_64" -p".7z"
Use with other download tools
# output download link to stdout without download fileredl -gl"36189" -p".asc" -nd# download use other download tool(aria2 curl wget etc)aria2c"$(redl -gl'36189' -p'.asc' -nd)"curl -LOJ"$(redl -gl'36189' -p'.asc' -nd)"wget --content-disposition"$(redl -gl'36189' -p'.asc' -nd)"# use with other download tools in Windows bat filefor/f"tokens=*" %%iin ('redl -gl 36189 -p .asc -nd')do (aria2c -x 4 %%i)
Install
# system is linux(debian,redhat linux,ubuntu,fedora...) and arch is amd64curl -Lo /usr/local/bin/redl https://github.com/gek64/redl/releases/latest/download/redl-linux-amd64chmod +x /usr/local/bin/redl# system is freebsd and arch is amd64curl -Lo /usr/local/bin/redl https://github.com/gek64/redl/releases/latest/download/redl-freebsd-amd64chmod +x /usr/local/bin/redl