Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rltest(1) [debian man page]

RLTEST(1)						      Quick Database Manager							 RLTEST(1)

NAME
rltest - test cases for QDBM Relic SYNOPSIS
rltest write name rnum rltest read name rnum DESCRIPTION
The command `rltest' is a utility for facility test and performance test. Check a database generated by the command or measure the execu- tion time of the command. This command is used in the following format. `name' specifies a database name. `rnum' specifies the number of records. rltest write name rnum Store records with keys of 8 bytes. They change as `00000001', `00000002'... rltest read name rnum Retrieve records of the database above. This command returns 0 on success, another on failure. SEE ALSO
qdbm(3), relic(3) AUTHOR
QDBM was written by Mikio Hirabayashi <mikio@fallabs.com>. Man Page 2005-06-01 RLTEST(1)

Check Out this Related Man Page

TCFTEST(1)							   Tokyo Cabinet							TCFTEST(1)

NAME
tcftest - test cases of the fixed-length database API DESCRIPTION
The command `tcftest' is a utility for facility test and performance test. This command is used in the following format. `path' specifies the path of a database file. `rnum' specifies the number of iterations. `width' specifies the width of the value of each record. `lim- siz' specifies the limit size of the database file. tcftest write [-mt] [-nl|-nb] [-rnd] path rnum [width [limsiz]] Store records with keys of 8 bytes. They change as `00000001', `00000002'... tcftest read [-mt] [-nl|-nb] [-wb] [-rnd] path Retrieve all records of the database above. tcftest remove [-mt] [-nl|-nb] [-rnd] path Remove all records of the database above. tcftest rcat [-mt] [-nl|-nb] [-pn num] [-dai|-dad|-rl] path rnum [limsiz]] Store records with partway duplicated keys using concatenate mode. tcftest misc [-mt] [-nl|-nb] path rnum Perform miscellaneous test of various operations. tcftest wicked [-mt] [-nl|-nb] path rnum Perform updating operations selected at random. Options feature the following. -mt : call the function `tcfdbsetmutex'. -nl : enable the option `FDBNOLCK'. -nb : enable the option `FDBLCKNB'. -rnd : select keys at random. -wb : use the function `tcfdbget4' instead of `tcfdbget2'. -pn num : specify the number of patterns. -dai : use the function `tcfdbaddint' instead of `tcfdbputcat'. -dad : use the function `tcfdbadddouble' instead of `tcfdbputcat'. -rl : set the length of values at random. -ru : perform random operation on random key. This command returns 0 on success, another on failure. SEE ALSO
tcfmttest(1), tcfmgr(1), tcfdb(3), tokyocabinet(3) Man Page 2012-08-18 TCFTEST(1)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Checking for invalid chars

Hi there! Can you please tell me how to check for ctrl chars or noprintable chars in a batch file ?? I suspect that some of my file is corrupted by those chars and i dont know how to chase them ... Thanks a lot! (2 Replies)
Discussion started by: andryk
2 Replies

2. Shell Programming and Scripting

Perl questions - more

More questions for Perl on Windows (again I apologize its on windows... ) 1. How can I check free disk space on a drive in windows using perl command in a script? 2. How can I check processes running using perl command (as I would normally be able to see in task manager for example) 3. I... (7 Replies)
Discussion started by: frustrated1
7 Replies

3. Shell Programming and Scripting

Perl error while using File::Tail

Hi, Can someone help with this PERL code; I am getting this error while running below code: And this is the code: use File::Tail; $file=File::Tail->new("/some/log/file"); while (defined($line=$file->read)) { print "$line"; } I don't usually use PERL therefore I am not... (1 Reply)
Discussion started by: INHF
1 Replies

4. Shell Programming and Scripting

FTP search ,grep using perl

Need assistance on a Perl script. I have a list of file names in a file and would like to search/grep the same names in the list of files on the ftp server and output to a file. Any help is appreciable Below is the script that can give me the list of files,size of file, Modified date on the... (56 Replies)
Discussion started by: ajayram_arya
56 Replies

5. Shell Programming and Scripting

Perl inside shell

I am trying to find out the difference between two dates, for which I am using perl inside SHELL. Below are my codes. perl -MDate -e 'Date::Calc qw(Delta_DHMS);' perl -e '($Dd,$Dh,$Dm,$Ds) = Delta_DHMS($year1,$month1,$day1, $hour1,$min1,$sec1, $year2,$month2,$day2, $hour2,$min2,$sec2)' But... (6 Replies)
Discussion started by: sauravrout
6 Replies

6. UNIX for Dummies Questions & Answers

UNIX Script - snipet meaning?

What would the below code snippet mean? my ($_configParam, $_paramValue) = split(/\s*=\s*/, $_, 2); $configParamHash{$_configParam} = $_paramValue; (2 Replies)
Discussion started by: MaKha
2 Replies

7. Shell Programming and Scripting

Building JSON command with bash script

Hello. I'm new to bash script and I'm learning the basics by writing some scripts. Recently a friend of mine asked me if I could try to write a script to him to automate a couple of processes that uses JSON RPCs. I'll try to explain in few words the workflow just to contextualize the problem.... (48 Replies)
Discussion started by: psysc0rpi0n
48 Replies