标准 linux sed 在 mac 中不工作
Standard linux sed not working in mac
找到了这种从 gmail 中获取未读电子邮件计数的方法,但它不适用于我的 mac:
我认为 mac 上的 sed 实现可能不是 'standard' linux。
这是我苦苦挣扎的路线:
MAILCOUNTER=`curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom" \
| sed -n 's|<fullcount>\(.*\)</fullcount>||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>||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 错误,这让我抓狂,因为在我的浏览器 returns 中正确输入 URL 如下错误
<HTML>
<HEAD>
<TITLE>Unauthorized</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unauthorized</H1>
<H2>Error 401</H2>
</BODY>
</HTML>
URL 返回:
<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 returns
我从中得到:
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&message_id=14aa8623548638bc&view=conv&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 实现基于 BSD sed,与 Linux sed 略有不同。
最简单的解决方案是安装 gsed(例如 GNU sed,可从 Mac Ports 获得)
基于 Unix 标准和 BSD 的 Mac 的 sed
与基于 sed
的 Linux 版本之间存在差异17=] 并包含许多与其他版本不兼容的不同扩展。但是,查看代码,确实没有什么不应该在 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>||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>##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 -
找到了这种从 gmail 中获取未读电子邮件计数的方法,但它不适用于我的 mac:
我认为 mac 上的 sed 实现可能不是 'standard' linux。
这是我苦苦挣扎的路线:
MAILCOUNTER=`curl -u $USERID:$PASSWORD --silent "https://mail.google.com/mail/feed/atom" \
| sed -n 's|<fullcount>\(.*\)</fullcount>||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>||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 错误,这让我抓狂,因为在我的浏览器 returns 中正确输入 URL 如下错误
<HTML>
<HEAD>
<TITLE>Unauthorized</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unauthorized</H1>
<H2>Error 401</H2>
</BODY>
</HTML>
URL 返回:
<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 returns
我从中得到:
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&message_id=14aa8623548638bc&view=conv&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 实现基于 BSD sed,与 Linux sed 略有不同。 最简单的解决方案是安装 gsed(例如 GNU sed,可从 Mac Ports 获得)
基于 Unix 标准和 BSD 的 Mac 的 sed
与基于 sed
的 Linux 版本之间存在差异17=] 并包含许多与其他版本不兼容的不同扩展。但是,查看代码,确实没有什么不应该在 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>||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>##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 -