[DEPRECATED] FileBot Auto-Install Script for Ubuntu

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

[DEPRECATED] FileBot Auto-Install Script for Ubuntu

Post 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
:idea: Please read the FAQ and How to Request Help.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

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

Post by rednoah »

:idea: Please read the FAQ and How to Request Help.
Post Reply