REGCONCAT(1) The Regina Handbook REGCONCAT(1)NAME
regconcat - Combine several Regina data files
SYNOPSIS
regconcat [ -o output-file ] input-file ...
DESCRIPTION
This utility combines several individual Regina data files into a single larger data file. The new file will have a container as its top-
level packet, and beneath this container will be the packet trees from each of the input files that you supply.
If an output file is specified through option -o, the new file will be written as compressed XML to this output file. Otherwise the new
file will be written as uncompressed XML to standard output.
OPTIONS -o output-file
Specifies that the new combined data file should be written as compressed XML to the given output file.
MACOS X USERS
If you downloaded a drag-and-drop app bundle, this utility is shipped inside it. If you dragged Regina to the main Applications folder,
you can run it as /Applications/Regina.app/Contents/MacOS/regconcat.
WINDOWS USERS
The command-line utilities are installed beneath the Program Files directory; on some machines this directory is called Pro-
gram Files (x86). You can start this utility by running c:Program FilesReginaRegina 4.93in
egconcat.exe.
SEE ALSO
regina-gui.
AUTHOR
This utility was written by Benjamin Burton <bab@debian.org>. Many people have been involved in the development of Regina; see the users'
handbook for a full list of credits.
28 May 2012 REGCONCAT(1)
Check Out this Related Man Page
REGCONVERT(1) The Regina Handbook REGCONVERT(1)NAME
regconvert - Convert between different Regina file formats
SYNOPSIS
regconvert [ -x | -u | -b ] old-file [ new-file ]
DESCRIPTION
Between Regina versions 2.4 and 3.0, the data files changed from using an impenetrable and undocumented binary format to using (optionally
compressed) XML.
This utility converts back and forth between these different file formats.
The argument old-file should be the file to read and convert; the argument new-file should be the name of the new converted file to write.
These two filenames may be the same, in which case the old file will be replaced with the new.
If the argument new-file is missing then the new file will be written to standard output, which forces the output to be uncompressed XML
(see option -u).
Warning: When writing an old-style binary file, some information might be lost. Old-style binary files can only store information
that was understood by the old version Regina 2.4.
OPTIONS -x (default)
Convert to compressed XML.
-u Convert to plain (uncompressed) XML.
-b Convert to the old-style binary format.
MACOS X USERS
If you downloaded a drag-and-drop app bundle, this utility is shipped inside it. If you dragged Regina to the main Applications folder,
you can run it as /Applications/Regina.app/Contents/MacOS/regconvert.
WINDOWS USERS
The command-line utilities are installed beneath the Program Files directory; on some machines this directory is called Pro-
gram Files (x86). You can start this utility by running c:Program FilesReginaRegina 4.93in
egconvert.exe.
SEE ALSO
regfiletype, regina-gui.
AUTHOR
This utility was written by Benjamin Burton <bab@debian.org>. Many people have been involved in the development of Regina; see the users'
handbook for a full list of credits.
28 May 2012 REGCONVERT(1)
What is the correct way to delete unwanted applications from a MACbook
running OS/X 10.4.1.1.
It is sufficient to drag and drop from Applications folder to Trash, then clear
Trash? (2 Replies)
I use otool on OS X to figure out the shared libraries that a binary uses. I run this command:
otool -L /Applications/Vidnik\ 0.13.0/Vidnik.app/Contents/MacOS/Vidnik
And it returns an output similar to this:
/Applications/Vidnik 0.13.0/Vidnik.app/Contents/MacOS/Vidnik:... (10 Replies)
Hello everyone,
I currently have a situation which is causing me some issues for keeping up with certain files. I will explain this to the best of my abilities.
I have a list of files as follows
50_REPORT_1111 - file contains the word Car
50_REPORT_2222 - file contains the word House... (15 Replies)
Hi,
I've a Pro*C program that generates a file with dat extension and it uses the following function to encrypt the data in the file.
Can anyone help in creating a function/program in any language that can decrypt the dat file?
void encrypt (unsigned long* entryvar)
{
typedef struct{... (1 Reply)
Hello,
I am having issues generating the output file below from this input file:
Basically, what I want is if the ID= matches with the line below to print the first value in column 3 and the last value of column 4 for the matching ID's. The ID's can repeat more than twice, however, they... (2 Replies)