我想管理我的Gmail使用Gmail API。
我获得了列表邮件的成功,但是当我阅读邮件的详细信息时,某些邮件是内容中的错误图片网址。
我的代码在这里:
# Make configfile
echo "TYPE1=Result1
TYPE2=OtherResult2" > translatecsv.cfg
# test the new cfg file, will it give valid sed commands?
sed 's#\(.*\)=\(.*\)#/^\1/ s/Hello/\2/g;#;' translatecsv.cfg
# All together now
sed "$(sed 's#\(.*\)=\(.*\)#/^\1/ s/Hello/\2/g;#;' translatecsv.cfg)" yourcsvfile
怎么修好了?请帮我! 非常感谢你。