I wrote this program to finally test out my c skills. I know I still have none, but at least I finally managed to write something useful. The hardest point was getting my head wrapped around pointers. I spent about 4 days writing the program and about 2 days messing around with the pointers. Pitiful I know.
I personally am going to use it for some scripts I got lying around here. This program can by like the pgsql or mysql command line tools to access PGSQL AND MYSQL databases. Can I call it gdbmnosql? Well, nonetheless, this program will have plenty of improvements in the future. The code seems noobish, as I only know the basics of good design practices.
And thanks in advance for the comments!
Synopsis
[cmd=]simplegdbmio gdbmfile "key string"[/cmd]
[cmd=]simplegdbmio gdbmfile "key string" "value string"[/cmd]
Purpose
Write or read simple key value pairs to a gdbm database. To read use two arguments. To write, use three arguments.
To install
Then manually copy to your ~/bin folder 
I personally am going to use it for some scripts I got lying around here. This program can by like the pgsql or mysql command line tools to access PGSQL AND MYSQL databases. Can I call it gdbmnosql? Well, nonetheless, this program will have plenty of improvements in the future. The code seems noobish, as I only know the basics of good design practices.
And thanks in advance for the comments!
Synopsis
[cmd=]simplegdbmio gdbmfile "key string"[/cmd]
[cmd=]simplegdbmio gdbmfile "key string" "value string"[/cmd]
Purpose
Write or read simple key value pairs to a gdbm database. To read use two arguments. To write, use three arguments.
To install
Code:
cd <src dir>; make;
