我想在shell脚本中运行配置单元查询。如果配置单元查询失败,我想退出shell脚本并抛出错误。现在,即使我的配置单元查询失败,接下来的步骤也会执行。有人能帮忙吗:瓦尔= hive -e " select col1 from table_name;" (假设表只有一行)echo“如果配置单元失败,请不要运行”
hive -e " select col1 from table_name;"
sr4lhrrt1#
hive -e "select col1 from table_name" if test $? -ne 0 then exit 1 fi
1条答案
按热度按时间sr4lhrrt1#