Sponsored Content
Full Discussion: substring
Top Forums Shell Programming and Scripting substring Post 302138339 by panknil on Monday 1st of October 2007 06:51:36 AM
Old 10-01-2007
Bug substring

Dear All,
i have a file that contains,
FROM_DATE: 06-08-2007 00:00:00 TO_DATE: 06-08-2007 23:59:59 Total number of lines: 6874154

in another file,the contain is,

FROM_DATE: 06-08-2007 00:00:00 Total number of lines: 874154

alltime i want to find the particular string Total number of lines:
and want to extract whatever is there after that string. can any body plz help me...

i dont want
grep "Total number of lines:" | cut -f -d
coz the file will never come same...
i want to search for a particular string for any type of file and then want to extract the data after that string


Thnx
regards,
pankaj
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

substring

Hi, I have a value of a filepath in a variable DATAFILE with value as "customtop/gpsore37/gepspo/1.0/bin/ashoka.csv ". Now i want the value of last 4 charcters in to another variable. That is EXTENSION = .csv How can i do this in Shell scripting Thanks in advance Alla Kishore (8 Replies)
Discussion started by: alla.kishore
8 Replies

2. Shell Programming and Scripting

How do I Substring ??

Hello everyone. I'm writing a script in UNIX. The purpose is to get the second character from a variable that stores the system year. This is the code: unix_year_yy=`date "+%g"` This will return "07" in variable unix_year_yy. How can I get the second character (7)?? (6 Replies)
Discussion started by: Rigger
6 Replies

3. Shell Programming and Scripting

substring ??

I execute command on this file and it gives o/p like this. COMMAND $ fuser -f /clocal/sanjay/AccessMonitor /clocal/sanjay/AccessMonitor: 1368322c To truncate 'c', i used tr -dc "\n" but then it does't give 1368322 as O/P. Any help ?? (7 Replies)
Discussion started by: varungupta
7 Replies

4. Shell Programming and Scripting

Substring HELP!

Hi, I am trying to do something which I thought was very simple but still being a beginner, has proved not to be. Input: val1 val2 val3 val4 val5 val6 . . . etc Desired Output: Every row in which value of val6 is a number starting with 0.0 or contains a capital E. The input... (2 Replies)
Discussion started by: awknerd
2 Replies

5. UNIX for Dummies Questions & Answers

Need help with substring

I need to check the occurrence of one string within another. code ******************** if ;then do something done ******************** Thanks (7 Replies)
Discussion started by: w020637
7 Replies

6. UNIX for Dummies Questions & Answers

Substring

Hi I use the below cmd to get the list of files that are modified than <temp> file in the <path> diretory cmd:find <path> -name '*.zip' -type f -newer <temp> -print i am getting all the list of files that are new or modified, with abs path, i want to copy all of these files to a... (3 Replies)
Discussion started by: Naveen_5960
3 Replies

7. Shell Programming and Scripting

substring

I have a string '<Hi>abc</Hi>" How to print "abc" (6 Replies)
Discussion started by: sandy1028
6 Replies

8. UNIX for Dummies Questions & Answers

Getting Substring

Hi, I hav a string lets say aa.txt:bb:txt length of the string can vary.. I have to keep the token inside a array and the delimiter is : plz send me the code (2 Replies)
Discussion started by: Deekay.p
2 Replies

9. Shell Programming and Scripting

Get the substring

Hi All, I have a ouput string likes 'u8wos' or 'u10acsd' or somthing else 'u{number}{any characters}'and I want to get the number behind the letter 'u' by bash shell. Thanks Damon (11 Replies)
Discussion started by: Damon_Qu
11 Replies

10. Shell Programming and Scripting

Substring

Hi All, In ksh, am trying to get a substring stuff done. Not sure where the problem is.. can you guys guide me on this... for instance, var1=41, and var2=4175894567, then i want to know whether var2 starts with var1.. var1 and var2 can be of any length.. VAR1=41 VAR2=419068567777... (6 Replies)
Discussion started by: nram_krishna@ya
6 Replies
OPENLOAD(1)						      General Commands Manual						       OPENLOAD(1)

NAME
openload - Tool for load testing of web applications SYNOPSIS
openload [options] url [clients] DESCRIPTION
This manual page documents briefly the openload usage. This manual page was written for the Debian distribution because the original program does not have a manual page. openload is (currently) a commandline tool, easy to use and providing near real-time performance measurements of the application under test which is very usefull during optimizations. OPTIONS
openload uses the usual GNU command line syntax, but the options starting with one dash (`-'). To run this program it is necessary to set the PATH or URL under test. You can set the clients number after the URL, which is the number of simultanous clients to simulate, defaults to 5. A summary of options is included below. -t Test mode: No throughput measurements are done. However the full response from the webserver (including headers) is displayed. This is useful for verifying that you get the right content before executing the real test. In this mode the number of clients defaults to 1. -h Header value: Specifies a HTTP request header. You can use this option several times to specify several headers. The sentence is -h followed by the name of header and the quoted value, separated by spaces. E.g. openload -h User-Agent "MSIE 5.0" mysite.com -l Time limit: number of seconds. The test will only run for the specified number of seconds. The sentence is -l followed by number of seconds, separated by spaces. E.g. openload -l 10 mysite.com -o Output mode: Currently only CSV (comma seperated values) is supported. This is useful for importing the result in a spreadsheet. The fields are: Url, Number of clients, TPS (Transactions Per Second), Average response time (seconds), Maximum response time, Total number of requests. -v Verifier mode: (undocumented) -b Body request: The test just request body response from the test URL. E.g. openload -b mysite.com OUTPUT RESULTS
A description of output results is listing below. * MaTps: a 20 second moving average of TPS. * Tps: (Transactions Per Second) is the number of completed requests during that second. * Resp Time: the average response time in seconds for the elapsed second. * Err: the percentage of responses that was erronous, i.e. didn't return a HTTP 200 Ok staus. * Count: the total number of completed requests. * Total TPS is the average TPS for the whole run, i.e. (Total completed requests) / (Total elapsed time). * Avg. Response time: the overall average response time in seconds. * Max Response time: the highest response time during this run. ABORTING THE PROCESS
To abort the process just press Enter or return Key, or use the terminal interrupt key (usually Ctrl-C). SEE ALSO
For a complete description of data results see the README file. AUTHOR
openload was written by Pelle Johnsen <pelle.johnsen@mail.dk>. This manual page was written by Silvia Alvarez <sils@powered-by-linux.com>, for the Debian project (but may be used by others). January 29, 2007 OPENLOAD(1)
All times are GMT -4. The time now is 01:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy