Skip to content

Instantly share code, notes, and snippets.

@liuyuhe666
Created July 8, 2024 12:19
Show Gist options
  • Save liuyuhe666/c944353f208610fe81ba6c6dcb64c941 to your computer and use it in GitHub Desktop.
Save liuyuhe666/c944353f208610fe81ba6c6dcb64c941 to your computer and use it in GitHub Desktop.
💕 获取一张二次元图片
echo "---- Fetch Image ----"
# 当前时间
$t = Get-Date -Format "yyyy_MM_dd_HH_mm_ss"
# 二次元图片 API
$uri = "https://t.alcy.cc/pc/"
# 文件名
$filename = $t + ".webp"
echo $filename
Invoke-WebRequest -Uri $uri -Outfile $filename
echo "---- Fetch Image ----"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment