Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

comb(1) [osf1 man page]

comb(1) 						      General Commands Manual							   comb(1)

NAME
comb - Combines Source Code Control System (SCCS) deltas SYNOPSIS
comb [-clist] [-os] [-pSID] file... The comb command writes to standard output a shell procedure for combining the specified deltas (SIDs) of an SCCS file and creating a new version of the file with fewer deltas. OPTIONS
Each option or group of options applies independently to each named file. Specifies a list of deltas (SIDs) that the shell procedure will preserve (see get -ilist). The procedure will combine all other deltas. Accesses the reconstructed file at the release of the delta to be created for each get -e generated; otherwise, accesses the reconstructed file at the most recent ancestor. Using the -o option may decrease the size of the reconstructed SCCS file. It may also alter the shape of the delta tree of the original file. Specifies the SID of the oldest delta for the resulting procedure to preserve. All older deltas are combined in the reconstructed file. Causes comb to gen- erate a shell procedure that, instead of combining the deltas, produces a report for each file, which lists the file name, size (in blocks) after combining, original size (also in blocks), and percentage change computed by the following formula: 100 * (original - combined) / original Run comb using this option before actually combining SCCS deltas in order to judge how much space will actually be saved by the com- bining process. DESCRIPTION
By piping the output of the comb command to a shell, or redirecting the output to a file and running that file as a shell procedure, you can reduce the size of your SCCS file. You can first see how much the file will be reduced by running the comb command with the -s option. If you specify a directory in place of file, the comb command performs the requested actions on all SCCS files (that is, those with file names with the s. prefix). If you specify a - (dash) in place of file, the comb command reads standard input and interprets each line as the name of an SCCS file. The comb command continues to take input until it reads End-of-File. If you do not specify any options, the comb command preserves only leaf deltas and the minimal number of ancestors needed to preserve the tree (see the delta command). The comb command may rearrange the shape of the tree deltas. The comb command may not save any space; in fact, it is possible for the reconstructed file to actually be larger than the original. EXAMPLES
To generate a report on how much space will be saved by combing all deltas older than SID 1.4 for SCCS file s.test.c, enter: comb -p1.4 -s s.test.c | sh To actually combine the deltas, enter: comb -p1.4 s.test.c | sh FILES
Temporary files. SEE ALSO
Commands: admin(1), cdc(1), delta(1), get(1), prs(1), rmdel(1), sact(1), sccs(1), sccsdiff(1), sccshelp(1), unget(1), val(1), what(1) Files: sccsfile(4) Programming Support Tools comb(1)

Check Out this Related Man Page

sccs-comb(1)                                                       User Commands                                                      sccs-comb(1)

NAME
sccs-comb, comb - combine SCCS deltas SYNOPSIS
/usr/ccs/bin/comb [-os] [-csid-list] [-psid] s.filename... DESCRIPTION
comb generates a shell script (see sh(1)) that you can use to reconstruct the indicated s.files. This script is written to the standard output. If a directory name is used in place of the s.filename argument, the comb command applies to all s.files in that directory. Unreadable s.files produce an error; processing continues with the next file (if any). The use of `-' as the s.filename argument indicates that the names of files are to be read from the standard input, one s.file per line. If no options are specified, comb preserves only the most recent (leaf) delta in a branch, and the minimal number of ancestors needed to preserve the history. OPTIONS
The following options are supported: -o For each `get -e' generated, access the reconstructed file at the release of the delta to be created. Otherwise, the recon- structed file is accessed at the most recent ancestor. The use of -o may decrease the size of the reconstructed s.file. It may also alter the shape of the delta tree of the original file. -s Generate scripts to gather statistics, rather than combining deltas. When run, the shell scripts report: the file name, size (in blocks) after combining, original size (also in blocks), and the percentage size change, computed by the formula: 100 * ( original - combined ) / original This option can be used to calculate the space that will be saved, before actually doing the combining. -csid-list Include the indicated list of deltas. All other deltas are omitted. sid-list is a comma-separated list of SCCS delta IDs (SIDs). To specify a range of deltas, use a `-' separator instead of a comma, between two SIDs in the list. -pSID The SID of the oldest delta to be preserved. FILES
s.COMB reconstructed SCCS file comb????? temporary file ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWsprot | +-----------------------------+-----------------------------+ SEE ALSO
sccs(1), sccs-admin(1), sccs-cdc(1), sccs-delta(1), sccs-help(1), sccs-prs(1), sccs-prt(1), sccs-rmdel(1), sccs-sccsdiff(1), what(1), sccs- file(4), attributes(5) DIAGNOSTICS
Use the SCCS help command for explanations (see sccs-help(1)). BUGS
comb may rearrange the shape of the tree of deltas. It may not save any space; in fact, it is possible for the reconstructed file to actu- ally be larger than the original. SunOS 5.10 1 Nov 1999 sccs-comb(1)
Man Page