#!/bin/tcsh
set A="a"
set B="b"
echo A
echo B
echo $A
echo $B
echo ${A}
echo ${B}
#
if ( `echo $A` == `echo $B` ) then
pwd
else
date
endif
#
echo " simpler alternative, i.e. A instead of $A, etc. "
if ( `echo A` == `echo B` ) then
pwd
else
date
endif
3条答案
按热度按时间eyh26e7m1#
使用双引号:
字符串
vwhgwdsa2#
最后,我找到了一个间接的解决方案来解决这个问题:
字符串
但我还是希望得到更酷的答案。- 谢谢-谢谢
hsvhsicv3#
字符串