<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>https://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>https://jackxiang.com/post//</link>
<title><![CDATA[mac下的zsh不兼容的坑-zsh:no matches found]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Wed, 21 Oct 2020 05:24:16 +0000</pubDate> 
<guid>https://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	背景：自已写了一个简单的命令行打开网页的go程序。运行时传入参数出现：<br/>./chrome http://gitlab.xx.xxxx.xx/irdcops/k8s.xx.xxxx.xx/-/merge_requests/new?merge_request%5Bsource_branch%5D=xiangdong<br/>zsh: no matches found: http://gitlab.xx.xxxx.xx/irdcops/k8s.xx.xxxx.xx/-/merge_requests/new?merge_request%5Bsource_branch%5D=xiangdong<br/><br/><br/>搜索了一下，找到出现的原因如下：<br/>在 zsh 下使用 find 命令查找指定目录下所有头文件时出现问题：<br/><br/>find . -name *.h<br/>1<br/>no matches found: *.h<br/><br/>后来查看了一些资料才知道，这是由于zsh导致的。<br/><br/>具体原因：<br/><br/>因为zsh缺省情况下始终自己解释这个 *.h，而不会传递给 find 来解释。<br/><br/>解决办法：<br/><br/>在~/.zshrc中加入:<br/>setopt no_nomatch, 然后进行source .zshrc命令<br/><textarea name="code" class="php" rows="15" cols="100">
解决方法：
~/.zshrc 文件加入：

setopt no_nomatch
之后，更新配置

source ~/.zshrc
</textarea><br/><br/>来自：https://blog.csdn.net/u012675539/article/details/52079013
]]>
</description>
</item><item>
<link>https://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] mac下的zsh不兼容的坑-zsh:no matches found]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>https://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>