繁体   English   中英

如何在tcsh if语句中使用OR条件

[英]How to use OR condition inside tcsh if statement

我试图在tcsh shell的IF语句中使用OR条件。 相同的语句在CSH中有效。

语句示例:(cat tesh.sh)

if [ "$1" == "hi" -o "$2" == "hello" ];then
echo hi
else
echo hello
fi

现在,如果执行此示例脚本,则会出现以下错误:

[35] % sh -x test hi hi hello
+ test hi hi hello
test[7]: hi: A test command parameter is not valid.
+ exit 1
[36] % sh -x test hi hi
+ test hi hi
test[7]: test: Specify a parameter with this command.
+ exit 1
[37] % sh -x test hi hello
+ test hi hello
test[7]: test: Specify a parameter with this command.
+ exit 1
[38] % sh -x test hi hello
+ test hi hello
test[7]: test: Specify a parameter with this command.
+ exit 1
[39] %

请提出可以做什么?

附加信息:

[44] % uname -s
HP-UX
[45] %
[45] % echo $SHELL
/bin/tcsh
[46] %

更多示例:

 cat new_test.txt
if ([ $1 == 1 ] || [ $2 == 1 ])
then
echo $1 and $2
fi

./new_test.txt 1 1
./new_test.txt: ==: A test command parameter is not valid.
./new_test.txt: ==: A test command parameter is not valid.

更多示例:

 cat suggested.sh

if (($1 == 1) || ($2 == 1)) ; then echo "$1 and $2" ; fi

 ./suggested.sh 1 1
./suggested.sh: 1:  not found.
./suggested.sh: 1:  not found.

有一些困惑:

  1. 您的第一个脚本是用bourne-shell编写的
  2. 您的脚本未提及应使用什么shell来解释它(根据您执行它的方式,可能会导致混乱)
  3. 您的第二个脚本是tcsh脚本,但语法令人误解
  4. 看来您不知道[是。

像这样修改第一个脚本:

#!/bin/sh
if [ "$1" == "hi"  -o   "$2" == "hello" ]; then
  echo hi
else
  echo hello
fi

这意味着,如果该脚本可执行,则它将使用/bin/sh进行解释。 但是,如果使用命令强制外壳程序:

% sh -x test hi hi
+ '[' hi == hi -o hi == hello ']'
+ echo hi
hi
% tcsh -x test hi hi
if [ hi = hi -o hi = hello ]
if: Expression Syntax.
then
then: Command not found.
%

您会发现使用错误的Shell会导致某些语法错误。

如果要编写tcsh脚本,这是一个解决方案:

#!/bin/tcsh
if ( "$1" == "hi"  ||  "$2" == "hello" ) then
  echo hi
else
  echo hello
endif

if语法不同,因为tcsh具有内部测试功能,而标准bourne shell没有该功能。 布赫纳壳测试是使用外部命令作出test ,其具有一个别名[ 因此,您可以阅读手册中有关test语法的文档:

SYNOPSIS
     test expression
     [ expression ] ...
     s1 = s2       True if the strings s1 and s2 are identical. ...
     expression1 -o expression2
                   True if either expression1 or expression2 are true.

对于tcsh的if ,请阅读tcsh的手册(或csh的父手册):

   if (expr) command
           If  expr (an expression, as described under Expressions) evalu-
           ates true, then command is executed.  Variable substitution  on
           command happens early, at the same time it does for the rest of
           the if command.  command must  be  a  simple  command,  not  an
           alias,  a  pipeline,  a command list or a parenthesized command
           list, but it  may  have  arguments.   Input/output  redirection
           occurs  even if expr is false and command is thus not executed;
           this is a bug.

   if (expr) then
   ...
   else if (expr2) then
   ...
   else
   ...
   endif   If the specified expr is true then the commands  to  the  first
           else are executed; otherwise if expr2 is true then the commands
           to the second else are executed, etc.  Any  number  of  else-if
           pairs are possible; only one endif is needed.  The else part is
           likewise optional.  (The words else and endif  must  appear  at
           the  beginning  of input lines; the if must appear alone on its
           input line or after an else.)

  Logical, arithmetical and comparison operators
       These operators are similar to those of C and have the same precedence.
       They include

           ||  &&  |  ^  &  ==  !=  =~  !~  <=  >=
           <  > <<  >>  +  -  *  /  %  !  ~  (  )
...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM