bash if [ -n "$输出变量" ]

发布于 2024-12-07 02:38:53 字数 273 浏览 1 评论 0 原文

line=$(grep "# rvm line" ~/.bashrc)

if [ ! -n "$line" ]; then
  echo "found"
else
  echo "not found"
fi

我第一行的引用有什么问题吗?

编辑:问题是 set -o errexit,我在脚本中使用它。我认为 -n 被视为错误,退出以下进程。我怎样才能克服这个问题,保持错误检查? (-n 的替代品也可以工作)。

line=$(grep "# rvm line" ~/.bashrc)

if [ ! -n "$line" ]; then
  echo "found"
else
  echo "not found"
fi

What's wrong with my quotes in the first line?

EDIT: The problem is set -o errexit, which I use in my script. I suppose -n is treated as an error, exiting the following processes. How can I overcome this, keeping the error check? (Alternatives to -n could work too).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不可一世的女人 2024-12-14 02:38:53

如果您不打算将 $line 用于除了测试它是否为空之外的任何其他用途,那么您不妨这样做:

if grep -q '# rvm line' ~/.bashrc; then
  echo "found"
else
  echo "not found"
fi

If you don't plan to use $line for anything else than testing if it's empty or not, then you might as well do this:

if grep -q '# rvm line' ~/.bashrc; then
  echo "found"
else
  echo "not found"
fi
请恋爱 2024-12-14 02:38:53

没什么

引号中没有明显的错误吗?您没有得到预期的结果吗?

好的,你的 if 条件是错误的 - 如果它的目的是检查 grep 语句是否返回了某些内容。我会把它作为一个线索,让你自己去弄清楚。祝你好运

Nothing

Nothing is apparently wrong with the quotes? Are you not getting expected result ?

ok,your if condition is wrong - if it was intended to check that something was returned by the grep statement. I will leave that as a clue for yourself to figure out. Goodluck

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文