gpt4 book ai didi

linux - 标准的 linux sed 在 mac 中不工作

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:57:52 25 4
gpt4 key购买 nike

发现这种方法可以从 gmail 中获取未读邮件数,但它在我的 mac 上不起作用:

我认为 mac 上的 sed 实现可能不是“标准”linux。

这是我正在努力解决的问题:

MAILCOUNTER=`curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom" \
| sed -n 's|<fullcount>\(.*\)</fullcount>|\1|p'`


USERID=youremail@gmail.com
PASSWORD=yoursecretpassword

WAIT=10

# Loop to check for new mail every X minutes:
while [ "1" -eq "1" ]; do

# Command line to fetch the number of unread emails:
MAILCOUNTER=`curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom" \
| sed -n 's|<fullcount>\(.*\)</fullcount>|\1|p'`

if [[ "$MAILCOUNTER" = "" ]]; then
echo "ERROR: The program coulndn't fetch the account for user \"$USERID\"."
echo "- Are you connected to the Internet?"
echo -e "- Is the userid and password correct for \"$USERID\"?\n"
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET 192.168.1.50/?emailCount=-1&

elif [[ "$MAILCOUNTER" -eq "0" ]]; then
echo "* There is 0 new email for user $USERID."
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET 192.168.1.50/?emailCount=0&

elif [[ "$MAILCOUNTER" -gt "0" ]]; then
echo "* There is $MAILCOUNTER new email for user $USERID."
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET 192.168.1.50/?emailCount=$MAILCOUNTER&
fi

echo "* Waiting $WAIT seconds before checking for emails again."
echo "* (^C to quit the program)"
sleep $WAIT

done

像这样的 curl 错误,这让我抓狂,因为在我的浏览器中输入 URL 会正确返回如下错误

<HTML>
<HEAD>
<TITLE>Unauthorized</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unauthorized</H1>
<H2>Error 401</H2>
</BODY>
</HTML>

网址返回:

<feed xmlns="http://purl.org/atom/ns#" version="0.3">
<title>Gmail - Inbox for myGmailName@gmail.com</title>
<tagline>New messages in your Gmail Inbox</tagline>
<fullcount>1</fullcount>
<link rel="alternate" href="http://mail.google.com/mail" type="text/html"/>
<modified>2015-01-02T00:14:36Z</modified>
<entry>

我更正了 google 邮件权限,现在 curl 返回

我从中得到:

curl -u MYUSRNAME:MYPASSWORD --silent "https://mail.google.com/mail/feed/atom"

这个:

<?xml version="1.0" encoding="UTF-8"?><feed version="0.3" xmlns="http://purl.org/atom/ns#"><title>Gmail - Inbox for MYEMAIL@gmail.com</title><tagline>New messages in your Gmail Inbox</tagline><fullcount>1</fullcount><link rel="alternate" href="http://mail.google.com/mail" type="text/html" /><modified>2015-01-02T02:03:50Z</modified><entry><title>test</title><summary>test</summary><link rel="alternate" href="http://mail.google.com/mail?account_id=MYEMAIL@gmail.com&amp;message_id=14aa8623548638bc&amp;view=conv&amp;extsrc=atom" type="text/html" /><modified>2015-01-02T02:03:36Z</modified><issued>2015-01-02T02:03:36Z</issued><id>tag:gmail.google.com,2004:1489150113099430076</id><author><name>the author</name><email>themail@email.com</email></author></entry></feed>MacBookPro-2:arduino_gmail_checker admin$ 

我只想要这里的数字:

<fullcount>1</fullcount>

最佳答案

Mac 的sed 是基于Unix 标准和BSD 的,Linux 版的sed 是基于gnu 的。并包含许多与其他版本不兼容的不同扩展。然而,查看代码,它们确实没有任何不应该在 Mac 上工作的地方。

如果查看错误消息会有所帮助,您就会看到发生了什么。我怀疑这不是 Mac/sed 问题,因为您没有正确设置。 curl 命令绝对没有错误检查。如果这些命令之一失败,它将简单地继续愉快地进行,并将输出通过管道传输到 sed。您确定这些 curl 命令正在获取数据吗?

获取包含 sed 命令的行,并尝试在没有 sed 的情况下手动运行它:

例如:

MAILCOUNTER=`curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom" \
| sed -n 's|<fullcount>\(.*\)</fullcount>|\1|p'`

从命令行尝试这些命令:

$ USERID=xxxxxx
$ PASSWORD=xxxxxx
$ curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom"

curl 命令会产生什么结果吗?如果不是,则问题不是 sed,而是您的 curl

您也可以尝试将 set -xv 添加到脚本的开头,将 set +xv 添加到脚本的末尾。这将打开 shell 调试。每行将在执行前打印,然后再次打印所有内插变量。这将帮助您追踪代码中的错误。


OK so it was a permissions thing with GMAIL, which I solved by loosening the security, and now curl returns as above in the edited post

很高兴我们解决了这个问题。这是我用来获取计数的命令:

$ curl -s  -u$username:$password "https://mail.google.com/mail/feed/atom" \
| xmllint --format - \
| sed -n 's#<fullcount>\(.*\)</fullcount>#\1#p'

curl 中的-s 阻止进度报告。 xmllint 命令重新格式化输出,使 sed 更容易使用。要查看它的作用,请尝试:

$ curl -s  -u$username:$password "https://mail.google.com/mail/feed/atom"

对比

$ curl -s  -u$username:$password "https://mail.google.com/mail/feed/atom" \
| xmllint --format -

关于linux - 标准的 linux sed 在 mac 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27734415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com