*** empty log message ***

This commit is contained in:
Brazil 2002-06-12 05:44:33 +00:00
parent 6673f033e6
commit 12794cfe0d
4 changed files with 0 additions and 44 deletions

View file

@ -1,13 +0,0 @@
#!/bin/sh
PATH=/bin:/usr/bin:
#
# Convert from arbitrary format to MUX V2 GDBM format.
#
case $# in
1) ../bin/dbconvert $1 Cw >/dev/null 2>&1 ;;
2) ../bin/dbconvert $1 Cw <$2 >/dev/null 2>&1 ;;
3) ../bin/dbconvert $1 Cw <$2 >/dev/null 2>$3 ;;
*) echo Usage: $0 'gdbm_file [source_file [log_file]]'; exit 1 ;;
esac
exit 0

View file

@ -1,15 +0,0 @@
#!/bin/sh
PATH=/bin:/usr/bin:
#
# Convert from arbitrary format to MUX V2 CHashFile format.
#
case $# in
1) ../bin/dbconvert $1 X ;;
2) ../bin/dbconvert $1 X <$2 ;;
3) ../bin/dbconvert $1 X <$2 >$3 ;;
*) echo Usage: $0 'basename [flatfile [structfile]]';
echo i.e., $0 netmux netmux.flat netmux.db;
exit 1 ;;
esac
exit 0

View file

@ -1,16 +0,0 @@
#!/bin/sh
PATH=/bin:/usr/bin:
#
# Convert from CHashFile format to MUX V2 flat file format.
#
echo NOTE: Make sure the MUX is NOT running before you make a flatfile.
case $# in
1) ../bin/dbconvert $1 x ;;
2) ../bin/dbconvert $1 x <$2 ;;
3) ../bin/dbconvert $1 x <$2 >$3 ;;
*) echo Usage: $0 'basename [structfile [flatfile]]';
echo i.e., $0 netmux netmux.db.new netmux.flat;
exit 1 ;;
esac
exit 0