mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
7 lines
225 B
PowerShell
7 lines
225 B
PowerShell
$a = "FiraCode","ComicShannsMono","Mononoki"
|
|
|
|
foreach($i in $a){
|
|
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
|
|
}
|
|
|