运行在线脚本

有时,我们想运行一个在线脚本,又不想下载它

使用 PowerShell 执行
如果脚本里包含非 ASCII 字符,比如汉字,先修改管道字符集

1
$OutputEncoding=[Text.Encoding]::UTF8

再执行

1
(iwr -useb $url).content | py
1
wget -qO- $url | python3
1
curl -sL $url | python3