标签: bash shell
我正在编写一个脚本并坚持使用代码。
/opt/mapr/hive/hive/beeline -n <username> <<-'EOF' drop table xyz if exists; create table xyz; select count(*) from xyz; EOF
现在,我想获取select count(*)命令的退出状态,并在脚本中的某处使用该退出状态代码。 如何获取命令的退出状态?
select count(*)
谢谢