1

我不知道如何制作一个脚本来将图片上传到 ImageShack,并在 BASH 中返回图片的热链接,有人可以帮我做一个吗?我正在考虑使用卷曲。

4

1 回答 1

2

这是我的解决方案:

#!/bin/bash

if [ $# -ne 1 ]
then
  echo "Usage: `basename $0` filename"
  exit
fi

image="$1"
mimetype=`file -b --mime-type $image`

curl -H Expect: -F "fileupload=@$image;type=$mimetype" -F xml=yes -# "http://post.imageshack.us/" | grep image_link | grep -o  http[^\<]*

如果您不喜欢进度条,只需替换-#-s

于 2011-07-26T03:26:16.357 回答