Page 1 of 1

[DEPRECATED] FileBot Auto-Install Script for Ubuntu

Posted: 28 Nov 2012, 10:52
by rednoah
Since there is no PPA here's a shell script you can just Copy & Paste into a terminal to install Java 7 and FileBot:

Code: Select all

sudo apt-get --assume-yes install openjdk-7-jre
if [ `uname -m` = "i686" ]
then
	wget -O filebot-i386.deb 'http://filebot.sourceforge.net/download.php?type=deb&arch=i386'
else
	wget -O filebot-amd64.deb 'http://filebot.sourceforge.net/download.php?type=deb&arch=amd64'
fi
sudo dpkg --force-depends -i filebot-*.deb && rm filebot-*.deb

Re: [DEB] FileBot Auto-Install Script for Ubuntu

Posted: 11 Nov 2022, 02:48
by rednoah