我有一个文件test.sh,其中我有一个查询,它给出了表中总记录的数量,如下所示:
查询:
echo db2 -x "select count(*) from testable”
现在我想使用Unix Shell脚本将它作为totalRecords
执行后,返回它返回的任何值。
答案 0 :(得分:3)
#!/bin/bash
cnt=`db2 -x "select count(*) from syscat.tables" `
echo "Counter is: ${cnt}"
反击是:474