企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 概述 database.sh ``` #!/bin/bash db_set () { echo "$1,$2" >> .database } db_get () { grep "^$1," .database | sed -e "s/^$1,//" | tail -n 1 } ``` 调用 ``` db_set hi 'hello world' db_get hi // hello world // 可覆盖 value 值 db_set hi 'hello world1' db_get hi // hello world1 ```