标签: unix scripting csh
检查变量是否为空是否有更优雅的方法?目前我正在使用:
if ( "x$mylist" == "x" ) then #or even the ("$list" == "") echo "list is empty" endif
我已经意识到"请不要CSH"在这里,但我别无选择。