getWebp.sh 209 B

12345678910
  1. #!/bin/sh
  2. for i in {1..300}
  3. do
  4. item=$(printf %04d $i)
  5. url="http://www.cncis.com.cn/tips/nanjing/yrzh/img/canvas/jcyy/$item.webp"
  6. curl $url --output ./public/img/jcyy/$item.webp
  7. echo $url
  8. done