9 lines
230 B
Bash
9 lines
230 B
Bash
#!/bin/sh
|
|
VERSION=$1
|
|
|
|
rm -rf mplayer-skins-$VERSION
|
|
mkdir mplayer-skins-$VERSION
|
|
cd mplayer-skins-$VERSION
|
|
wget -r N -l 1 -np -nd -A "*.bz2" http://ftp.mplayerhq.hu/MPlayer/skins/
|
|
tar -cj *.bz2 > ../mplayer-skins-$VERSION.tar.bz2
|