mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
16 lines
274 B
PowerShell
16 lines
274 B
PowerShell
param (
|
|
[string]
|
|
$OutputPath
|
|
)
|
|
|
|
try {
|
|
Invoke-WebRequest `
|
|
-Uri 'https://raw.githubusercontent.com/17mon/china_ip_list/master/china_ip_list.txt' `
|
|
-OutFile 'chnip.txt'
|
|
}
|
|
catch {
|
|
exit 1
|
|
}
|
|
|
|
mv -Force 'chnip.txt' $OutputPath
|
|
exit 0 |