Running FileBot from the console, Groovy scripting, shell scripts, etc
-
rednoah
- The Source
- Posts: 23959
- Joined: 16 Nov 2011, 08:59
- Location: Taipei
-
Contact:
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
-
rednoah
- The Source
- Posts: 23959
- Joined: 16 Nov 2011, 08:59
- Location: Taipei
-
Contact:
Post
by rednoah »