mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
16 lines
287 B
PowerShell
16 lines
287 B
PowerShell
param (
|
|
[string]
|
|
$OutputPath
|
|
)
|
|
|
|
try {
|
|
Invoke-WebRequest `
|
|
-Uri 'https://github.com/v2fly/domain-list-community/releases/download/20211013090609/dlc.dat' `
|
|
-OutFile 'geosite.dat'
|
|
}
|
|
catch {
|
|
exit 1
|
|
}
|
|
|
|
mv -Force 'geosite.dat' $OutputPath
|
|
exit 0 |