grep -c命令扩展

时间:2017-06-29 15:41:37

标签: bash grep

在centos 7上我有这种奇怪的行为:

如果我这样做:

grep -v "^#" /etc/security/limits.conf

我有:

*   soft    nofile  10000
*   hard    nofile  10000

如果我这样做:

var=$(grep -v "^#" /etc/security/limits.conf)
echo $var

我的结果是grep结果加上我工作目录中的文件。 例如,如果我在/ usr我有:

bin etc games include lib lib64 libexec local sbin share src tmp soft nofile 10000 bin etc games include lib lib64 libexec local sbin share src tmp hard nofile 10000

这只发生在-v选项中。我错过了什么?

0 个答案:

没有答案