Last active
February 8, 2017 21:15
-
-
Save varunchopra/764422a2e0524be14add7d70828bd4ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PATH=/bin:/usr/bin:/sbin:/usr/sbin | |
a=ffmpeg | |
b=ffmpeg-git-64bit-static.tar.xz | |
c=ffmpeg-git-*-64bit-static | |
mkdir $a | |
wget --no-check-certificate --directory-prefix=$a https://johnvansickle.com/ffmpeg/builds/$b | |
tar xf $a/$b -C $a | |
rm -rf $a/$b $a/$c/GPLv3.txt $a/$c/readme.txt $a/$c/manpages | |
mv $a/$c/* /usr/bin | |
rm -rf $a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment