SVK(3) User Contributed Perl Documentation SVK(3)NAME
SVK - A Distributed Version Control System
SYNOPSIS
use SVK;
use SVK::XD;
$xd = SVK::XD->new (depotmap => { '' => '/path/to/repos'});
$svk = SVK->new (xd => $xd, output => $output);
# serialize the $xd object for future use.
$svk->ls ('//'); # check $output for its output
...
DESCRIPTION
"SVK" is the class that loads SVK::Command and invokes them. You can use it in your program to do what you do with the svk command line
interface.
CONSTRUCTOR
Options to "new":
xd SVK::XD object that handles depot and checkout copy mapping.
output
A scalar reference. After command invocation the output will be stored in the scalar. By default the output is not held in any scalar
and will be printed to STDOUT.
METHODS
All methods are autoloaded and deferred to "SVK::Command->invoke".
SEE ALSO
svk, SVK::XD, SVK::Command.
perl v5.10.0 2008-08-04 SVK(3)
Check Out this Related Man Page
SVK::Command::Update(3) User Contributed Perl Documentation SVK::Command::Update(3)NAME
SVK::Command::Update - Bring changes from repository to checkout copies
SYNOPSIS
update [PATH...]
OPTIONS -r [--revision] REV : act on revision REV instead of the head revision
-N [--non-recursive] : do not descend recursively
-C [--check-only] : try operation but make no changes
-s [--sync] : synchronize mirrored sources before update
-m [--merge] : smerge from copied sources before update
-q [--quiet] : print as little as possible
DESCRIPTION
Synchronize checkout copies to revision given by -r or to HEAD revision by default.
For each updated item a line will start with a character reporting the action taken. These characters have the following meaning:
A Added
D Deleted
U Updated
C Conflict
G Merged
g Merged without actual change
A character in the first column signifies an update to the actual file, while updates to the file's props are shown in the second column.
If both "--sync" and "--merge" are specified, like in "svk up -sm", it will first synchronize the mirrored copy source path, and then
smerge from it.
perl v5.10.0 2008-08-04 SVK::Command::Update(3)
I have a text file, input.fasta contains some protein sequences. input.fasta is shown below.
>P02649
MKVLWAALLVTFLAGCQAKVEQAVETEPEPELRQQTEWQSGQRWELALGRFWDYLRWVQT
LSEQVQEELLSSQVTQELRALMDETMKELKAYKSELEEQLTPVAEETRARLSKELQAAQA
RLGADMEDVCGRLVQYRGEVQAMLGQSTEELRVRLASHLRKLRKRLLRDADDLQKRLAVY... (8 Replies)
Hello All,
Thanks for taking time to read through the thread and for providing any possible solution.
I am trying to pivot a comma separated field in a pipe delimited file. Data looks something like this:
Field1|Field2
123|345,567,789
234|563,560
345|975,098,985,397,984
456|736
Desired... (8 Replies)
Hello,
I am playing around with sort and I am having some problems
I want to sort times.
sort -n -k2 filename
# key: sex, time, athlete, athlete's nationality, date, city, country
F, 2:15:24.6, Paula Radcliffe, ENG, 2003-04-13, London, UK
F, 2:17:17.7, Paula Radcliffe, ENG, 2002-10-13,... (3 Replies)
Hello All,
This is to request some assistance on the issue that I encountered until recently.
Problem is:
I have a pipe delimited file in which some lines/records are broken. Now, I have to join/concatenate broken lines in the file to form actual record to make sure that the count of records... (8 Replies)
Hi,
I am having below two CSV's
col_1,col_2,col_3
1,2,4
1,3,6
col_1,col_3,col2,col_5,col_6
1,2,3,4,5
1,6,3,,,
I need to compare based on the columns where the mismatch is
expected output
col_1,col_2,col_3
1,2,4 (3 Replies)
Hi Experts,
Please support
I have below data in file in comma seperated, but 4th column is containing comma in between numbers, bcz of which when i tried to parse the file the column 6th value(5049641141) is being removed from the file and value(222.82) in column 5 becoming value of column6.
... (3 Replies)
My CSV file looks similar to this example (the K, L, and M are in the same cell as J but each on a new line within that cell):
1, A, B, C, D
2, E, F, G, H
3, I, J N, O,
K
L
M,
4, P, Q, R, S
I would like to have it look like this:
1, A,... (6 Replies)
Hi ALL,
file data like :
test.csv
a,b,"c,d"
my awk version is 4.0.2 ,if i am using the below code is working fine.
awk -vFPAT='(*)|("+")' -vOFS="," '{print $3}' test.csv
if the awk version is 3.1.7 is not working . Could you please help me on this one.
output should be : "c,d" (6 Replies)
Hi All,
I am having a situation where am capturing results in two variables from an xml file. However, I am looking to print those two variables with pipe in between them and these variable are multi-line.
This is how my 1st variable looks like:
20181225010
20190224010
20190224010... (8 Replies)
Hi Gurus,
I have below requirement and have no idea how to achieve this.
the input file like below. there are multiple sections in file, each section has multiple lines. I need to find certain lines (value1, value2, value3 are key words for line searching) and generate another file. in some... (9 Replies)
I have a fasta file as follows
>sp|Q8WWQ8|STAB2_HUMAN Stabilin-2 OS=Homo sapiens OX=9606 GN=STAB2 PE=1 SV=3
MMLQHLVIFCLGLVVQNFCSPAETTGQARRCDRKSLLTIRTECRSCALNLGVKCPDGYTM
ITSGSVGVRDCRYTFEVRTYSLSLPGCRHICRKDYLQPRCCPGRWGPDCIECPGGAGSPC
NGRGSCAEGMEGNGTCSCQEGFGGTACETCADDNLFGPSCSSVCNCVHGVCNSGLDGDGT... (3 Replies)