Sponsored Content
Top Forums Shell Programming and Scripting problems getting a segment from a string output Post 302364223 by tzvio on Thursday 22nd of October 2009 10:25:28 AM
Old 10-22-2009
problems getting a segment from a string output

Hi
I'm creating a script that creates files from svn checkout and compress them using tar.gz

the script gets the repository name from command line argument

i need to capture a number from the last line of the output and create a file name from it.


the svn returns output of all the file names from the repository and in the end it says:
revision number xxxxx

i need to get this number and then rename the tar.gz to it

how do i save the output to a variable and get this number


this is the script:

Code:
#!/bin/bash
svn co svn://192.168.1.241/$1 temp && tar czf backup.tar.gz temp

thanks
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

problems egreging for a '(0)' string

Hi, I'm trying to egreg for a couple strings whcih are (0) and SYSTEM. The problem is the syntax for egreg is: egreg "(string1|string2)" With my basic knowledge of UNIX I don't know how to include '(0)' within "(string1|string2)" apart from trying to use single quotes which doesn't work,... (9 Replies)
Discussion started by: m223464
9 Replies

2. UNIX for Advanced & Expert Users

Help please...output problems with printf.

#include <stdio.h> #include <math.h> // this function calculates the volume of a Cylinder int main(void) { int r; // radius int h; // height double M_PI; // pi int pOne = pow (r, 2); // get user input of radius and height printf ("Enter your... (3 Replies)
Discussion started by: pwanda
3 Replies

3. Shell Programming and Scripting

Cutting segment of a string

Hi, I am using bash. My question concerns cutting out segments of a string. Given the following filename: S2002254132542.L1A_MLAC.x.hdf I have been able to successfully separate the string at the periods (.): $ L1A_FILE=S2002254132542.L1A_MLAC.x.hdf $ BASE=$(echo $L1A_FILE | awk -F.... (5 Replies)
Discussion started by: msb65
5 Replies

4. Shell Programming and Scripting

how to find a particular string from a set of string output

Hi , I have a line by line output as follows,for example output of ls sample1 sample2 sample i need to check if this output contains the exact string sample.If i use grep , it will find out all strings that contain sample as a part of their word.I dont want to do a pattern matching... (11 Replies)
Discussion started by: padmisri
11 Replies

5. Shell Programming and Scripting

My output Problems

jnkjhjkhbjkhb (1 Reply)
Discussion started by: vinayrao
1 Replies

6. Shell Programming and Scripting

awk: round output or delimit output of arithmatic string

I have a file with the following content. > cat /tmp/internetusage.txt 6709.296322 30000 2/7/2010 0.00I am using the following awk command to calculate a percentage from field 1 and 2 from the file. awk '{ print $1/$2*100 }' /tmp/internetusage.txt This outputs the value "22.3643" as a... (1 Reply)
Discussion started by: jelloir
1 Replies

7. Shell Programming and Scripting

String concatenation problems

#! /bin/csh set tt=12345_UMR_BH452_3_2.txt set rr=`echo $tt | cut -d_ -f1` set rr1=welcome set ff=$rr $rr1 echo $ff why $ff returned only 12345 and not 12345welcome? thanks (2 Replies)
Discussion started by: jdsignature88
2 Replies

8. Programming

Data segment or Text segment

Hi, Whether the following piece of code is placed in the read-only memory of code (text) segment or data segment? char *a = "Hello"; I am getting two different answers while searching in google :( that's why the confusion is (7 Replies)
Discussion started by: royalibrahim
7 Replies

9. Shell Programming and Scripting

String comparison problems

Req: =========== 1)I have one shell script a.sh 2)I opened Putty session , with user name = SIR100 , and i ran a.sh script in back ground and it took 5 minutes to complete.Meanwhile,i ran same script second time i.e a.sh with same user it sholud not allow to run the script , but it's... (3 Replies)
Discussion started by: as234301
3 Replies

10. Shell Programming and Scripting

Problems with one line output

my echo $var1 gives below value 1.7_NEW=25,1.7_RETAINED=30,1.7_RETURNING=40 i want it in 3 different values.... i.e. as echo $1.7_NEW=25 echo $1.7_RETAINED=30 echo $1.7_RETURNING=40 the o/p of $1.7_NEW should be 25..... (5 Replies)
Discussion started by: nikhil jain
5 Replies
SVN-INJECT(1)							 Command reference						     SVN-INJECT(1)

NAME
svn-inject - puts a Debian source package into Subversion repository SYNOPSIS
svn-inject [options] package.dsc repository_URL OPTIONS
svn-inject accepts the following options on the command-line: -h print the help menu -v Make the command output verbose Default: Off. -q Hide less important messages Default: Off. -l Layout type. 1 (default) means package/{trunk,tags,branches,...} scheme, 2 means the {trunk,tags,branches,...}/package scheme. Default: 1 -t directory Specify the directory where the .orig.tar.gz files are stored on the local machine. Default: Off. -d | --do-like=directory Looks at the working directory of some other package and uses its base URL, tarball storage directory and similar checkout target directory. Default: Off. -c number Checkout nothing (0), trunk directory (1) or everything (2) when the work is done. Default: 1 -o Only keep modified files under SVN control (including the debian/ directory), track only parts of upstream branch Default: Off. -O | --no-branches Do not create the branches subdirectory at all. This works in a similar way to -o but all changes on upstream files (e.g. meta changes like updating the config.guess and config.sub files) are ignored and the upstream branch is not used. Default: use branches/. -s By default, svn-inject used to create .svn/deb-layout after an inject operation if a checkout followed the inject. Since version 0.6.22 this behaviour is deprecated. With this parameter svn-inject will replicate the old behaviour. This option was provided since it can be useful when creating a local override file. Default: Off. -setprops -set-props Set svn-bp:* props on the debian directory automatically. Default: Off. SEE ALSO
/usr/share/doc/svn-buildpackage/() The svn-buildpackage HOWTO manual svn-upgrade(1) upgrade source package from a new upstream revision. svn(1) Subversion command line client tool dpkg-buildpackage(1) Debian source package tools AUTHORS
Eduard Bloch This manual page was written by Eduard Bloch in roff. Goneri Le Bouder Converted manpages to SGML. Neil Williams Converted manpages to DocBook XML and current Debian maintainer COPYRIGHT
Copyright (C) 2009 Eduard Bloch Release: 0.8.2 May 2009 SVN-INJECT(1)
All times are GMT -4. The time now is 05:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy