Search Results

5
votes
6answers
2k views

Killing a defunct process on UNIX system

I have a defunct process on my system: 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> …
3
votes
4answers
1k views

Get specific lines from a text file

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 th …
0
votes
3answers
146 views

Size of a tcp packet on BSD

If i need to find out the size of a tcp packet on BSD.....what do we need to do? Is there some utility which allows for this? …
8
votes
4answers
7k views

Using getopts in bash shell script to get long and short command line options

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. …
2
votes
1answer
276 views

Check file size in shell and display file and path above a threshold

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 aw …
0
votes
4answers
257 views

Using expect to login into SVN

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. The problem here is that, for every login to …
5
votes
6answers
733 views

Move top 1000 lines from text file to a new file using Unix shell commands

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. Is there some way to do th …
0
votes
1answer
77 views

Listing the latest file/folder using wget

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 …
-3
votes
4answers
180 views

How do I fork a new process and get back its PID in Perl?

My issue is related to using fork() 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 wou …