From 64f9f6ffa32b2abb2c2ce21d04faa98cd018a53f Mon Sep 17 00:00:00 2001 From: coja Date: Tue, 25 Mar 2025 22:49:19 +0100 Subject: [PATCH] [Doc] changed readme --- README.md | 47 ++++++++++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 85eee94..4154c28 100644 --- a/README.md +++ b/README.md @@ -27,41 +27,54 @@ Try these commands: Ask what types of _rec_ords it contains: +## Database + ```sh recinf network.rec ``` -Select with `recsel`, then specify the type of record. +### Select queries + +Select with `recsel`, then specify the database (.rec) and type of record (like table in db). + +`--include-descriptors` or `-d` +`--type` or `-t` +`--expression` or `-e` +`--quick` or `-q` ```sh recsel network.rec --type router -recsel network.rec --include-descriptors --type lxc recsel network.rec -d -t lxc -recsel network.rec -d -t lxc --expression +recsel network.rec -d -t lxc -e ?example? ``` -User `-q` for a 'quick' selection, or `-e` for more precise selections. +User `-q` for a `--quick` selection, or `-e` for more precise selections. ```sh recsel network.rec --type lxc --quick wiki -recsel network.rec --type lxc -q nginx -recsel network.rec -t lxc --expression "name ~ 'nginx'" -recsel network.rec -t lxc --expression "name = 'nginx12'" +recsel network.rec -t lxc -q nginx +recsel network.rec -t lxc -e "name ~ 'nginx'" +recsel network.rec -t lxc -e "name = 'nginx12'" ``` -If you can select something, you can also set its fields with `recset`. - -Use `-f` to set the field, and `-a` to add, or `-s` to set. - - -```sh -recset network.rec -t lxc --expression "name = 'nginx12'" -f proxies --add soft-serve -recsel network.rec -t lxc --expression "name = 'nginx11'" -p proxies[0] -recset network.rec -t lxc --expression "name = 'nginx11'" -f proxies[0] -s wiki9 -``` +### Insert queries Insert a new record with `recins`. ```sh recins network.rec -t lxc -r "name: bob" -r "service: bob" -r "host: moxx" ``` + +### Update queries + +If you can select something, you can also set its fields with `recset`. + +Use `-f` to set the `--field`, and `-a` to `--add`, or `-s` to `--set`. + + +```sh +recset network.rec -t lxc -e "name = 'nginx12'" -f proxies -a soft-serve +recsel network.rec -t lxc -e "name = 'nginx11'" -p proxies[0] +recset network.rec -t lxc -e" name = 'nginx11'" -f proxies[0] -s wiki9 +``` +