1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 08:58:52 +00:00
dotfiles/.config/fish/functions/fruitdl.fish

11 lines
422 B
Fish
Raw Normal View History

2019-04-04 21:57:47 +00:00
# Defined in /tmp/fish.VXbo9N/fruitdl.fish @ line 2
2018-11-15 01:01:37 +00:00
function fruitdl
2019-04-04 21:57:47 +00:00
cd $D/Games/Emulators/$argv[2]
2018-11-15 01:01:37 +00:00
rm -r $argv[1]
2019-04-04 21:57:47 +00:00
set file (curl -sL github.com/$argv[2]-emu/$argv[2]-$argv[1]/releases/latest| grep -o -m1 $argv[2]-emu/$argv[2]-$argv[1]/releases/download/$argv[1]-[0-9]\*/$argv[2]-linux-[0-9]\*-[0-9a-f]\*)
dl http://github.com/$file.7z
set file (basename $file)
7z x $file.7z
rm $file.7z
2018-11-15 01:01:37 +00:00
end