gpt4 book ai didi

command-line - 使用
转载 作者:行者123 更新时间:2023-12-03 18:17:43 27 4
gpt4 key购买 nike

我需要知道脚本.sh文件中的此命令是成功还是失败。

sqlite3 database.db < database.sql


我在想类似的东西:

$result = ('sqlite3 database.db < database.sql')


如果$ result包含某些内容,我将保释。否则,如果结果不包含任何内容,我继续。

最佳答案

sqlite3工具将返回正常的错误状态,您可以使用常规的shell方法(if$?等)检查该状态:

$ if sqlite3 test.db "select 42;"; then echo success; else echo failure; fi
42
success
$ if sqlite3 test.db "select x;"; then echo success; else echo failure; fi
Error: no such column: x
failure

关于command-line - 使用<sqlite3时检查结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14637421/

27 4 0

Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com