mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
9 lines
231 B
Bash
9 lines
231 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
tables=("users" "groups" "memberships" "jwt_refresh_storage" "jwt_storage" "password_reset_tokens")
|
||
|
echo ".header on"
|
||
|
|
||
|
for table in ${tables[@]}; do
|
||
|
echo ".mode insert $table"
|
||
|
echo "select * from $table;"
|
||
|
done
|