
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Inaba SDBM Manipulator is a command line tool to manipulate SDBM database.
We checked good operation within following environment.
Download inaba-x.y.z.gem, then execute following command to install Inaba.
$ sudo gem install inaba-x.y.z.gem
On the other hand, you can install from RubyGems.org to use following command.
$ sudo gem install inaba
Set file path of SDBM database to environment variable named $INABA_DB. If target database file is named rabbit.sdb, use following command in bash.
$ export INABA_DB="rabbit.sdb"
Use add command to add a value to key.
$ inaba add rabbit RABBIT
Use list command to show key value pairs.
$ inaba list
[rabbit]:RABBIT
Add more pairs.
$ inaba add bunny BUNNY
$ inaba add hare HARE
$ inaba list
[rabbit]:RABBIT
[bunny]:BUNNY
[hare]:HARE
Inaba can output a pair list with CSV format.
$ inaba csv
rabbit,RABBIT
bunny,BUNNY
hare,HARE
Also use keys command to list keys.
$ inaba keys
rabbit, bunny, hare,
Values command works listing values.
$ inaba values
RABBIT, BUNNY, HARE,
Use del command to delete key value command.
$ inaba del rabbit
$ inaba list
[bunny]:BUNNY
[hare]:HARE
Clear command removes all key value pairs.
$ inaba clear
コマンド | 引数 | 説明 |
---|---|---|
add | key value | Add value to key |
del | key | Delete a value associated with key |
list | Output key value pairs | |
keys | Output keys | |
values | Output values | |
csv | Output pairs with CSV format | |
help | Output command list |
Inaba is distributed with MIT License. See the LICENSE file to read the detail of license.
Moza USANE
http://blog.quellencode.org/
mozamimy@quellencode.org
FAQs
Unknown package
We found that inaba demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.