User gagneet - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:54:47Zhttp://stackoverflow.com/feeds/user/35416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286402/initializing-struct-using-an-array2Initializing struct, using an arraygagneet2008-11-13T07:02:28Z2009-11-28T11:28:04Z
<p>I have a couple of array's:</p>
<pre><code>const string a_strs[] = {"cr=1", "ag=2", "gnd=U", "prl=12", "av=123", "sz=345", "rc=6", "pc=12345"};
const string b_strs[] = {"cr=2", "sz=345", "ag=10", "gnd=M", "prl=11", "rc=6", "cp=34", "cv=54", "av=654", "ct=77", "pc=12345"};
</code></pre>
<p>which i then need to parse out for '=' and then put the values in the struct. (the rc key maps to the fc key in the struct), which is in the form of:</p>
<pre><code>struct predict_cache_key {
pck() :
av_id(0),
sz_id(0),
cr_id(0),
cp_id(0),
cv_id(0),
ct_id(0),
fc(0),
gnd(0),
ag(0),
pc(0),
prl_id(0)
{ }
int av_id;
int sz_id;
int cr_id;
int cp_id;
int cv_id;
int ct_id;
int fc;
char gnd;
int ag;
int pc;
long prl_id;
};
</code></pre>
<p>The problem I am encountering is that the array's are not in sequence or in the same sequence as the struct fields. So, I need to check each and then come up with a scheme to put the same into the struct.</p>
<p>Any help in using C or C++ to solve the above?</p>
http://stackoverflow.com/questions/356722/killing-a-defunct-process-on-unix-system4Killing a defunct process on UNIX systemgagneet2008-12-10T16:42:52Z2009-11-24T16:29:18Z
<p>I have a defunct process on my system:</p>
<pre><code>abc 22093 19508 0 23:29 pts/4 00:00:00 grep ProcA
abc 31756 1 0 Dec08 ? 00:00:00 [ProcA_my_collect] <defunct>
</code></pre>
<p>How can I kill the above process, without a reboot of the machine? I have tried with</p>
<pre><code>kill -9 31756
sudo kill -9 31756
</code></pre>
http://stackoverflow.com/questions/271612/parse-a-file-using-c-load-the-value-to-a-structure2Parse a file using C++, load the value to a structuregagneet2008-11-07T09:25:33Z2009-11-13T06:44:43Z
<p>Hi,</p>
<p>I have the following file/line:</p>
<pre><code>pc=1 ct=1 av=112 cv=1100 cp=1700 rec=2 p=10001 g=0 a=0 sz=5 cr=200
pc=1 ct=1 av=113 cv=1110 cp=1800 rec=2 p=10001 g=0 a=10 sz=5 cr=200
</code></pre>
<p>and so on.
I wish to parse this and take the key value pairs and put them in a structure:</p>
<pre><code>struct pky
{
pky() :
a_id(0),
sz_id(0),
cr_id(0),
cp_id(0),
cv_id(0),
ct_id(0),
fr(0),
g('U'),
a(0),
pc(0),
p_id(0)
{ }
};
</code></pre>
<p>wherein either all the structure fields are used or some might be omitted.</p>
<p>How do I create a C++ class, which will do the same? I am new to C++ and not aware of any functions or library which would do this work.</p>
<p>Each line is to be processed, and the structure will be populated with one line each time and used, before it is flushed. The structure is later used as a parameter to a function.</p>
http://stackoverflow.com/questions/573067/unable-to-serve-pages-on-mac-os-x-using-default-apache-web-server2Unable to serve pages on Mac OS X using default Apache Web Servergagneet2009-02-21T14:05:03Z2009-11-11T22:19:07Z
<p>I have enabled the Web Server on my Mac OS X (10.5.6) by going to the System Preferences -> Internet & Network -> Sharing and clicking on the Web Server option. It gives me the IP address of my system as the Web Server, but even after clicking on it, it does not show the page, but gives an error: Failed to Connect</p>
<p>Any help on this would be wonderful.</p>
<p>I have tried with MAMP, but there, I am unable to get my own PHP pages to be displayed.</p>
<p>Starting and/or stopping the web server from the command line, gives me the following:</p>
<pre><code>dyld: Symbol not found: _apr_socket_sendfile
Referenced from: /usr/sbin/httpd
Expected in: /usr/lib/libapr-1.0.dylib
Trace/BPT trap
</code></pre>
<p>The files on my box are:</p>
<pre><code>~ $ ls -lrt /usr/lib/libapr*
-rwxr-xr-x 1 root wheel 578640 Sep 23 2007 /usr/lib/libapr-1.0.2.7.dylib
-rwxr-xr-x 1 root wheel 393696 Sep 23 2007 /usr/lib/libaprutil-1.0.2.7.dylib
-rwxrwxr-x 1 root admin 569544 Oct 27 10:44 /usr/lib/libaprutil-1.0.2.12.dylib
-rwxrwxr-x 1 root admin 835824 Oct 27 10:44 /usr/lib/libapr-1.0.2.12.dylib
lrwxr-xr-x 1 root admin 25 Jan 4 22:28 /usr/lib/libaprutil-1.dylib -> libaprutil-1.0.2.12.dylib
lrwxr-xr-x 1 root admin 25 Jan 4 22:28 /usr/lib/libaprutil-1.0.dylib -> libaprutil-1.0.2.12.dylib
lrwxr-xr-x 1 root admin 21 Jan 4 22:28 /usr/lib/libapr-1.dylib -> libapr-1.0.2.12.dylib
lrwxr-xr-x 1 root admin 21 Jan 4 22:28 /usr/lib/libapr-1.0.dylib -> libapr-1.0.2.12.dylib
</code></pre>
<p>The MD5 values are:</p>
<pre><code>~ $ openssl md5 /usr/sbin/httpd /usr/lib/libapr-1.0.dylib
MD5(/usr/sbin/httpd)= d5194790e9cfaca881d0e8fc3db24889
MD5(/usr/lib/libapr-1.0.dylib)= f7f7fd3cd315ca4e7c6ad2a2f222998e
</code></pre>
<p>The libapr-1.0.dylib is linked to the newer 1.0.2.12 version.</p>
http://stackoverflow.com/questions/1442603/keep-connection-alive-after-response-is-received-from-the-http-server0Keep connection alive after response is received from the HTTP servergagneet2009-09-18T04:29:13Z2009-09-18T15:14:00Z
<p>I have a client-server system, where the client needs to fork a child, and return its pid back to the server. After this, it has to keep the connection to the server alive, through which it keeps sending the server log information about the child and other requests that it might want to send as part of debugging information.</p>
<p>My question is, how can this be done? Do I every time make a connection to the server, send it the pid and ask it to log the request [as I can have multiple clients sending requests to the server at the same time] or is there some other way also to do this?</p>
http://stackoverflow.com/questions/1438282/how-do-i-fork-a-new-process-and-get-back-its-pid-in-perl-3How do I fork a new process and get back its PID in Perl?gagneet2009-09-17T11:32:15Z2009-09-18T07:16:00Z
<p>My issue is related to using <code>fork()</code> within Perl code.
I wish to fork a new process and capture its PID and return it back to the callee program. Is there some command in Perl which would make this possible?</p>
http://stackoverflow.com/questions/1366751/how-can-i-use-expect-to-enter-a-password-for-a-perl-script2How can I use Expect to enter a password for a Perl script?gagneet2009-09-02T09:47:36Z2009-09-03T08:18:50Z
<p>I wish to automatically enter a password while running an install script. I have invoked the install script using the backticks in Perl. Now my issue is how do I enter that password using <code>expect</code> or something else?</p>
<pre><code>my $op = `install.sh -f my_conf -p my_ip -s my_server`;
</code></pre>
<p>When the above is executed, a password line is printed:</p>
<pre><code>Enter password for the packagekey:
</code></pre>
<p>In the above line I wish to enter the password. </p>
http://stackoverflow.com/questions/1366623/listing-the-latest-file-folder-using-wget0Listing the latest file/folder using wgetgagneet2009-09-02T09:17:28Z2009-09-02T13:46:19Z
<p>I wish to get a particular set of files and the only access I have on that box is through the http inteface, which I can get from wget. Now the issue is that I want the latest files, and there are multiple which must be of the same time stamp.</p>
<pre><code>wget http://myserver/abc_20090901.tgz
wget http://myserver/xyz_20090901.tgz
wget http://myserver/pqr_20090901.tgz
</code></pre>
<p>The issue being that I do not know if all the above files exist and I wish to get only when all 3 files with the above time stamp exist. </p>
<p>The other issue is that I have another file in a separate folder which is also to be obtained. How do I get these files? Any suggestions?</p>
<pre><code>wget http://myserver/text/myfile_20090901.txt
</code></pre>
http://stackoverflow.com/questions/1253816/find-string-inside-a-gzipped-file-in-a-folder2find string inside a gzipped file in a foldergagneet2009-08-10T08:58:58Z2009-08-10T14:11:39Z
<p>My current problem is that I have around 10 folders, which contain gzipped files (around on an average 5 each). This makes it 50 files to open and look at.</p>
<p>Is there a simpler method to find out if a gzipped file inside a folder has a particular pattern or not?</p>
<pre><code>zcat ABC/myzippedfile1.txt.gz | grep "pattern match"
zcat ABC/myzippedfile2.txt.gz | grep "pattern match"
</code></pre>
<p>Instead of writing a script, can I do the same in a single line, for all the folders and sub folders?</p>
<pre><code>for f in `ls *.gz`; do echo $f; zcat $f | grep <pattern>; done;
</code></pre>
http://stackoverflow.com/questions/1221215/svn-diff-across-2-different-repositories1SVN diff across 2 different repositoriesgagneet2009-08-03T08:31:40Z2009-08-03T11:31:02Z
<p>I have 2 repositories. As the trunk code was in one repository, which was protected, I did a checkout and then checked in to the other repository (as users did not have permission to the first protected one).</p>
<p>Now the issue is that both the repositories have been worked on and we wish to finally merge the code/branch in the second unprotected one with the protected one. But, there will be conflicts in these.</p>
<p>Is there a way to find out the diff for the 2 repository branches?
Also, if there are whitespace changes, how do I ignore those?</p>
http://stackoverflow.com/questions/1040291/parsing-comma-separated-lines-and-calculating-sum0Parsing comma separated lines and calculating sumgagneet2009-06-24T19:04:04Z2009-06-25T06:25:28Z
<p>So basically my problem can be written in pseudo-code as follows:</p>
<pre><code>split the line by =
using value before =, find the next line
check this the value after = matches previous
if not, then loop till end of file
collect all the values which match and using the line numbers, get the last 2 columns value
sum all the values for a given set with equal key=value pair.
</code></pre>
<p>The dataset I have is as follows:</p>
<pre><code>3=5002, 0=10002, 5=1, 4=1, 7=1, 8=1, 9=0, 1=14002, 6=5, 200, 100
3=5002, 0=10002, 5=0, 4=1, 7=0, 8=0, 9=1, 1=14002, 6=5, 300, 10
3=5001, 0=10001, 5=0, 4=0, 7=0, 8=0, 9=0, 1=14001, 6=3, 1000, 80
3=5001, 0=10004, 5=1, 4=1, 7=2, 8=2, 9=1, 1=14001, 6=3, 10000, 1200
3=5003, 0=10004, 5=2, 4=0, 7=2, 8=2, 9=1, 1=14003, 6=8, 5000, 500
3=5003, 0=10004, 5=3, 4=1, 7=2, 8=1, 9=0, 1=14003, 6=8, 1000, 7
</code></pre>
<p>What I need to do is, take all values for 3, which are equal and get the summation of the last 2 columns and sum it for that value. Example:</p>
<pre><code>3 = 5002, sum = 500, 110
5 = 0, sum = 1300, 90
8 = 2, sum = 15000, 1700
</code></pre>
<p>I have been able to parse the first 3, but am unable to do anything for the rest of the columns :-(</p>
http://stackoverflow.com/questions/348850/code-coverage-tools-for-php3Code Coverage tools for PHPgagneet2008-12-08T07:30:23Z2009-06-14T03:57:54Z
<p>Is there any code coverage tool available for PHP?
I wish to check the code coverage of my code and API's written in PHP, but have not been able to lay my hands on any code coverage tool for PHP, as it is more of a server side language and dynamic in nature.</p>
<p>Does anyone know of a method by which code coverage for PHP can be executed?</p>
http://stackoverflow.com/questions/963502/read-content-from-file-and-find-full-file-name-on-disk1Read content from file and find full file-name on disk gagneet2009-06-08T05:17:20Z2009-06-08T19:29:33Z
<p>My problem is that I have a bunch of file names without the version appended (version keeps changing everytime). The file names are in a file in a particular sequence and I need to get the latest version from a folder and then sequentially install the same. The logic would be:</p>
<ol>
<li>scan a file with contents</li>
<li>read a line from the file</li>
<li>using this as a key, access the folder and match the same</li>
<li>if found, write the full file-name to a file with some characters appended</li>
<li>if not found, skip and loop to line 1, till all the lines in the file are finished</li>
</ol>
<p>What is the best language to use: shell script or Perl for such a task? And if someone can provide some hints in the form of code :-)</p>
http://stackoverflow.com/questions/348757/cross-compiler-for-embedded-platform-in-windows1Cross compiler for embedded platform in Windowsgagneet2008-12-08T05:57:15Z2009-06-06T18:41:06Z
<p>I wish to build a compiler (GCC port) for Linux, so that the built GCC runs on Windows and creates executables for an embedded platform.</p>
<p>Is the above possible?</p>
http://stackoverflow.com/questions/945998/enter-password-multiple-times0Enter password multiple times gagneet2009-06-03T17:23:08Z2009-06-03T22:06:48Z
<p>I am running an application, which prompts for a password of the user about a dozen times :-(
I tried using expect to circumvent this issue, and make it run in auto mode, but am unable to get over the issue of the multiple times password, which is not exactly static. Sometimes it asks 4-5 times and sometime around 9-10 times.</p>
<p>Is there a better solution to the problem than what I have given below:</p>
<pre><code>spawn myApp [lindex $argv 0]
expect " password: $"
send "$password\r"
expect {
" password: $" send "$password\r"
"^Rollout Done "
"^Rollout Updated "
}
</code></pre>
<p>With the above solution, I have only been able to catch the password twice and then manually start entering for the rest of the time, is there a loop possible with the password?</p>
http://stackoverflow.com/questions/919318/how-can-i-write-the-same-text-to-two-separate-file-handles-using-perl4How can I write the same text to two separate file handles using Perl?gagneet2009-05-28T05:33:42Z2009-05-28T15:58:56Z
<p>I need to output the same text to two different files (it is a application requirement, which I am testing). Now, I do not wish to open two file handles, write two lines to each, then close them a dozen times in my code.</p>
<p>Is there a simple way, perhaps using a single line in Perl (but not in the CLI!), to send the same text to two different files?</p>
http://stackoverflow.com/questions/851913/c4-5-algorithm-implementation-on-unix-mac-os0c4.5 algorithm implementation on unix/mac osgagneet2009-05-12T09:21:55Z2009-05-24T11:49:49Z
<p>I am trying to compile and execute the <a href="http://www2.cs.uregina.ca/~dbd/cs831/notes/ml/dtrees/c4.5/tutorial.html" rel="nofollow">c4.5 algorithm</a> on my mac os machine (have a red hat enterprise linux 4.6 machine too), but have not been able to get anywhere with the same. </p>
<p>Is there any one who has tried this and succeed on getting the same to compile and execute on their machines? If, so, please can you share the steps? </p>
http://stackoverflow.com/questions/402377/using-getopts-in-bash-shell-script-to-get-long-and-short-command-line-options7Using getopts in bash shell script to get long and short command line optionsgagneet2008-12-31T05:49:05Z2009-05-15T08:11:24Z
<p>I wish to have long and short forms of command line options invoked using my shell script.
I know that getopts can be used, but like in Perl, I have not been able to do the same with shell.</p>
<p>Any ideas on how this can be done, so that i can use options like:</p>
<pre><code>./shell.sh --copyfile abc.pl /tmp/
./shell.sh -c abc.pl /tmp/
</code></pre>
<p>In the above, both the commands mean the same thing to my shell, but using, getopts, I have not been able to implement these?</p>
http://stackoverflow.com/questions/356705/how-to-send-a-header-using-a-http-request-through-a-curl-call1How to send a header using a HTTP request through a curl call?gagneet2008-12-10T16:38:57Z2009-05-01T06:42:04Z
<p>I wish to send a header to my apache server on a linux box.
Using a curl call how can I achieve this?</p>
http://stackoverflow.com/questions/806830/capture-cpu-and-memory-usage-dynamically3Capture CPU and Memory usage dynamicallygagneet2009-04-30T13:13:07Z2009-04-30T15:13:35Z
<p>I am running a shell script to execute a c++ application, which measures the performance of an api. i can capture the latency (time taken to return a value for a given set of parameters) of the api, but i also wish to capture the cpu and memory usage alongside at intervals of say 5-10 seconds.</p>
<p>is there a way to do this without effecting the performance of the system too much and that too within the same script? i have found many examples where one can do outside (independently) of the script we are running; but not one where we can do within the same script.</p>
http://stackoverflow.com/questions/801004/move-top-1000-lines-from-text-file-to-a-new-file-using-unix-shell-commands5Move top 1000 lines from text file to a new file using Unix shell commandsgagneet2009-04-29T05:33:11Z2009-04-29T08:02:05Z
<p>I wish to copy the top 1000 lines in a text file containing more than 50 million entries, to another new file, and also delete these lines from the original file.</p>
<p>Is there some way to do the same with a single shell command in Unix?</p>
http://stackoverflow.com/questions/790552/calling-a-function-with-different-number-of-threads-passed-to-the-application0Calling a function with different number of threads passed to the applicationgagneet2009-04-26T09:32:25Z2009-04-27T15:46:55Z
<p>I have a function which needs to be invoked with a different number of threads each time (am doing some performance calculation, so need to know when the performance starts deteriorating). Example is given below:</p>
<pre><code>getTime() {
return 0;
}
int main() {
boost::threadpool::thread_pool<> threads(nThreads);
for(int j = 0; j <= nLines; j++){
threads.schedule(boost::bind(&getTime, nThreads, 1));
}
threads.wait();
}
</code></pre>
<p>Where,
nThreads: A value given at the command line</p>
<p>My question is, would this give me the desired result, as to would this call the 'getTime' function with 'nThreads' each time the for loop is accessed by the program? Or do I need some other method to find out the same?</p>
<p>what i really want to do is this: </p>
<pre><code>boost::threadpool::thread_pool<> threads(nThreads);
// start a new thread that calls the "getTime" function
for(int j = 0; j <= nLines; j++){
//threads.schedule(boost::bind(&getTime, nThreads, 1));
threads.schedule(boost::bind(&getTime, 0, nLines, pc));
}
</code></pre>
<p>(not sure which of the above is correct.)</p>
<p>the getTime() function is to be run with a specified number of lines which i get from a text file and give each line to a api, whose performance i wish to calculate. but this is unrelated to the question i have.</p>
<p>i wish to call a function with different number of threads each time and calculate how much time it took each thread to finish. what was the total time taken with 1 thread, what was the total time taken by 2 threads to finish, etc. </p>
http://stackoverflow.com/questions/790538/adding-values-from-file-to-a-hash-type-structure-in-c0Adding values from file to a hash type structure in C++gagneet2009-04-26T09:17:10Z2009-04-26T11:00:25Z
<p>I have a space separated file which contains some key->value pairs. These are to be loaded to a structure of the type given below:</p>
<pre><code>#define FV_PARAM1 "A"
#define FV_PARAM2 "B"
parameter_t & parameterFeatureVector (
parameter_t & param,
int param1,
int param2,
) {
param.addParam(FV_PARAM1, param1);
param.addParam(FV_PARAM2, param2);
return param;
}
</code></pre>
<p>So to the above, I can pass the following values: </p>
<pre><code>parameterFeatureVector( 10, 20 );
</code></pre>
<p>And I would expect the same to get loaded to 'param' structure. The above values are taken from the file. How would I go about implementing the same. If the above is not clear, do feel free to get back on it.</p>
http://stackoverflow.com/questions/775848/compute-numerical-values-from-a-space-separated-text-file-within-a-range-of-line0Compute numerical values from a space separated text file, within a range of linesgagneet2009-04-22T05:41:55Z2009-04-22T15:08:03Z
<p>I have a file with the following values:</p>
<pre><code>for 3 threads:
Average time taken for API1 is: 19097.7 nanoseconds.
Average time taken for API2 is: 19173.1 nanoseconds.
Average time taken for API2 is: 19777.7 nanoseconds.
Average time taken for API2 is: 19243.1 nanoseconds.
Average time taken for API1 is: 19737.7 nanoseconds.
Average time taken for API2 is: 19128.1 nanoseconds.
for 5 threads:
Average time taken for API1 is: 19097.7 nanoseconds.
Average time taken for API2 is: 19173.1 nanoseconds.
Average time taken for API2 is: 19777.7 nanoseconds.
...
</code></pre>
<p>I wish to calculate the sum of the 1API lines and the 2API lines, and sum them.
Another requirement is that i also want to figure out for each thread on a separate basis. Is there a way to do this using perl, sed, awk or just shell scripts?</p>
<p>What I can current get is:</p>
<pre><code>cat result | grep API1 | awk {'print $7'}
</code></pre>
http://stackoverflow.com/questions/348657/how-can-i-find-a-substring-within-a-string-using-perl5How can I find a substring within a string using Perl?gagneet2008-12-08T04:31:18Z2009-04-06T08:25:20Z
<p>I have a string from which I wish to extract a single word, but with a numerical appended to it, which might be different in each line:</p>
<pre><code>This is string1 this is string
This is string11
This is string6 and it is in this line
</code></pre>
<p>I want to parse this file and get the the values of "stringXXX", starting from 0 to 100</p>
<pre><code># suppose ABC.txt contains the above lines
FH1 = open "Abc.txt";
@abcFile = <FH1>;
foreach $line(@abcFile) {
if ($pattern =~ s/string.(d{0}d{100});
print $pattern;
</code></pre>
<p>The above prints the whole line, I wish to get only stringXXX</p>
http://stackoverflow.com/questions/678419/add-lines-to-top-of-text-file-retain-formatting0Add lines to top of text file, retain formattinggagneet2009-03-24T17:30:42Z2009-03-24T17:41:11Z
<p>I have a config file to which I nee to add a couple of lines at the top of the file.
When I try to do it from the command line, it removes the new line characters from my file and gives me an unformatted file.</p>
<p>So, my question is: Can I add some lines to the top of an already existing file and it should retain its formatting and new lines remain as new lines?</p>
<p>I am adding new lines to an existing file from another file.</p>
http://stackoverflow.com/questions/609445/using-expect-to-login-into-svn0Using expect to login into SVNgagneet2009-03-04T06:30:50Z2009-03-22T08:11:12Z
<p>I am trying to use an automated script, which would login to SVN, update my sources, create a tarball with these and scp them to a remote host.</p>
<p>The problem here is that, for every login to SVN (even for checkout or update), we require to enter our password. Automation of password entry, the only way that I could find, was using expect to work on this. </p>
<p>Is there any script in expect, which can take care of SVN and scp for detecting and giving the password to SVN and then to SCP?</p>
<p>I am using the following:</p>
<pre><code>spawn svn [lindex $argv 0]
expect " password: $"
send "$password\r"
expect {
" password: $" send "$password\r"
"^At revision "
"^Updated to revision "
}
</code></pre>
<p>The password and up command i pass from the command line, but there is a security threat there if someone has access to the history. The answers mentioned below do not satisfy my pre-requisites, also i am not able to do an export for now [some other security concerns :-(]</p>
http://stackoverflow.com/questions/560569/hanging-a-child-process0Hanging a Child Processgagneet2009-02-18T10:47:23Z2009-02-27T04:21:14Z
<p>I am trying to test out my system and wish to emulate a condition, where the child process gets hung. For doing this, I am trying to attach the child process to GDB and putting a break on it. But things don't seem to be going as expected.</p>
<p>Also, in the same vein, how do I know that a spawned child process is not progressing, but is hung?</p>
http://stackoverflow.com/questions/581094/check-file-size-in-shell-and-display-file-and-path-above-a-threshold2Check file size in shell and display file and path above a thresholdgagneet2009-02-24T09:34:16Z2009-02-24T09:38:14Z
<p>I am trying to check for files which are larger than a given threshold. I know that the 'du' comand gives me the output for each file/folder, but how to put that in a single line on shell (using awk with if clause?).</p>
http://stackoverflow.com/questions/383633/get-specific-lines-from-a-text-file3Get specific lines from a text filegagneet2008-12-20T19:10:26Z2009-01-17T19:09:59Z
<p>I am working on a UNIX box, and trying to run an application, which gives some debug logs to the standard output. I have redirected this output to a log file, but now wish to get the lines where the error is being shown.</p>
<p>My problem here is that a simple</p>
<pre><code>cat output.log | grep FAIL
</code></pre>
<p>does not help out. As this shows only the lines which have FAIL in them. I want some more information along with this. Like the 2-3 lines above this line with FAIL. Is there any way to do this via a simple shell command? I would like to have a single command line (can have pipes) to do the above.</p>
http://stackoverflow.com/questions/1253816/find-string-inside-a-gzipped-file-in-a-folder/1253839#1253839Comment by gagneet on find string inside a gzipped file in a foldergagneet2009-08-10T09:16:36Z2009-08-10T09:16:36Z-bash-3.00$ find . -name "*.gz" -exec zcat "{}" + | grep "NOT OK"
find: missing argument to `-exec'
something seems to be missing after exec?http://stackoverflow.com/questions/1253816/find-string-inside-a-gzipped-file-in-a-folder/1253846#1253846Comment by gagneet on find string inside a gzipped file in a foldergagneet2009-08-10T09:15:06Z2009-08-10T09:15:06ZI get the lines which contain this pattern, but not the name of the file by this method. Is there some way to get that also listed?http://stackoverflow.com/questions/963502/read-content-from-file-and-find-full-file-name-on-disk/963525#963525Comment by gagneet on Read content from file and find full file-name on disk gagneet2009-06-08T06:10:53Z2009-06-08T06:10:53Zyes, you are right in assuming the above. i will try what you have given. thanks :-)http://stackoverflow.com/questions/963502/read-content-from-file-and-find-full-file-name-on-disk/963514#963514Comment by gagneet on Read content from file and find full file-name on disk gagneet2009-06-08T05:39:03Z2009-06-08T05:39:03Zyes, the full file-names need to appear in the same order as the partial file names.
yes, the partial file-names (as given by Jonathan) are the initial names without the version of the file appended, so the full file name can be derived from the partial file names.http://stackoverflow.com/questions/919318/how-can-i-write-the-same-text-to-two-separate-file-handles-using-perl/919341#919341Comment by gagneet on How can I write the same text to two separate file handles using Perl?gagneet2009-05-28T12:10:22Z2009-05-28T12:10:22Zthanks the solution worked well :-)http://stackoverflow.com/questions/806830/capture-cpu-and-memory-usage-dynamically/806880#806880Comment by gagneet on Capture CPU and Memory usage dynamicallygagneet2009-04-30T13:35:48Z2009-04-30T13:35:48Zcould you provide an example? i tried the same within shell, but it expects the process to get over and i have multiple instances of the call running in the same script ... written one line after the other.http://stackoverflow.com/questions/801004/move-top-1000-lines-from-text-file-to-a-new-file-using-unix-shell-commandsComment by gagneet on Move top 1000 lines from text file to a new file using Unix shell commandsgagneet2009-04-29T10:49:14Z2009-04-29T10:49:14Z@Phil: I wish to convert some lines in the original file to another format. For the same, I need to first derive the lines from this BIG file, and then convert and copy them to another file. But parsing through this file is taking a long time and the machine gets hung, as almost 11G of memory is being used.http://stackoverflow.com/questions/790552/calling-a-function-with-different-number-of-threads-passed-to-the-application/790593#790593Comment by gagneet on Calling a function with different number of threads passed to the applicationgagneet2009-04-27T15:37:50Z2009-04-27T15:37:50Zi have edited the main question. do inform if the requirement is still unclear.http://stackoverflow.com/questions/790552/calling-a-function-with-different-number-of-threads-passed-to-the-application/790593#790593Comment by gagneet on Calling a function with different number of threads passed to the applicationgagneet2009-04-26T10:49:36Z2009-04-26T10:49:36Zsorry my bad. did not state that i want to have the process run for multiple different values, which are stored in that line variable and initialized in getTime(). Hence the requirement for a FOR loop. what you have given would mean another FOR loop inside the one i gave. correct me if wrong?http://stackoverflow.com/questions/775848/compute-numerical-values-from-a-space-separated-text-file-within-a-range-of-line/775929#775929Comment by gagneet on Compute numerical values from a space separated text file, within a range of linesgagneet2009-04-22T06:53:32Z2009-04-22T06:53:32Zhi, this does not meet the requirement of having different sums for the different number of threads given.http://stackoverflow.com/questions/678419/add-lines-to-top-of-text-file-retain-formattingComment by gagneet on Add lines to top of text file, retain formattinggagneet2009-04-16T11:39:47Z2009-04-16T11:39:47ZI am making an automated script to do the above. Hence the requirement for a shell command.http://stackoverflow.com/questions/573067/unable-to-serve-pages-on-mac-os-x-using-default-apache-web-server/573442#573442Comment by gagneet on Unable to serve pages on Mac OS X using default Apache Web Servergagneet2009-02-24T09:48:04Z2009-02-24T09:48:04Zyes tried it, but i get the error, as i have appended in my question above.http://stackoverflow.com/questions/573067/unable-to-serve-pages-on-mac-os-x-using-default-apache-web-server/573421#573421Comment by gagneet on Unable to serve pages on Mac OS X using default Apache Web Servergagneet2009-02-24T09:45:06Z2009-02-24T09:45:06ZStarting and/or stopping the server, gives the following:
dyld: Symbol not found: _apr_socket_sendfile
Referenced from: /usr/sbin/httpd
Expected in: /usr/lib/libapr-1.0.dylib
Trace/BPT trap
http://stackoverflow.com/questions/573067/unable-to-serve-pages-on-mac-os-x-using-default-apache-web-server/573090#573090Comment by gagneet on Unable to serve pages on Mac OS X using default Apache Web Servergagneet2009-02-21T14:38:45Z2009-02-21T14:38:45Znot working... i have even tried restarting the system and reinstalling the browser.http://stackoverflow.com/questions/388615/size-of-a-tcp-packet-on-bsd/388617#388617Comment by gagneet on Size of a tcp packet on BSDgagneet2008-12-23T10:53:36Z2008-12-23T10:53:36Zno i am looking for the current size of a package sent via tcp. how can i get the size of this on the web server?