CSH 集团存在性测试与价值测试

发布于 2024-09-27 18:55:40 字数 355 浏览 1 评论 0原文

在 CSH 中,是否可以将变量是否存在的测试与其值的测试嵌套在同一个 if 子句中?

#!/bin/csh

# This seems to work...
if ( $?VAR ) then
    echo "VAR exists"        
    if ( $VAR == true ) then
        echo "VAR is true"
    endif
endif

# I want something more like this:
if (( $?VAR ) && ( $VAR == true )) then
    echo "VAR exists and is true"
endif

In CSH, is it possible to nest the test for an existance of a variable with the test for its value in the same if-clause?

#!/bin/csh

# This seems to work...
if ( $?VAR ) then
    echo "VAR exists"        
    if ( $VAR == true ) then
        echo "VAR is true"
    endif
endif

# I want something more like this:
if (( $?VAR ) && ( $VAR == true )) then
    echo "VAR exists and is true"
endif

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

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

发布评论

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

评论(1

佼人 2024-10-04 18:55:40

短路评估是 C shell 不具备的许多功能之一做。您必须使用嵌套的 if 语句或 switch shell。

Short-circuit evaluation is one of the many things that C shell doesn't do. You will have to use nested if statements or switch shells.

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