Seemingly simple???

2003-12-10 Thread Maraglia, Dominicx
Hello, I have a small problem, which at first seems simple, but has proven to be a bit of a hair puller. A collegue and I are importing some windows formatted ascii files (onto our linux systems) and extracting certain string data. Simple enough. However, our problem is that some of the

RE: Unix

2003-06-27 Thread Maraglia, Dominicx
Many way to do this...depends on how much time you want to spend on it. Here is a quick and dirty example that works: ps -ef | awk '{print $1 $2} | grep your_UID | awk '{print $2}' | xargs -i -l kill Cheers, Dominic -Original Message- From: Krishna, Hari [mailto:[EMAIL

Delayed writing using file handles???

2003-06-18 Thread Maraglia, Dominicx
Title: Message I have some code which is used in stress testing iSCSI network I/O. I am logging the results, but often the writes to the logfile are greatly delayed. For example, if my ltest has been running for an hour, the logfile might only contain 45 minutes of data. The problem is most

RE: Problem Using 'unlink' within Script

2003-06-10 Thread Maraglia, Dominicx
Hey James, Try this: my $tmpfile = H:/topdir/mediumdir/plaintext.txt; I had a similar problem with escaped backslashes with AS Perl on win2k -- I switched to using the / and all unlinking has worked fine after that. Cheers, Dominic -Original Message- From: James E Keenan