Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chorgan

  1. chorgan

    Redirect output from csh script

    Thanks, but still cant redirect my errors as I need the application (STDOUT) to start anyway, I have a patch which might get rid of the warning - I'll have to try that instead
  2. chorgan

    Redirect output from csh script

    I have this: command >& myfile.txt but it is giving me an error - "Bad Number" and referencing the file name I used do i need to declare the file name as a variable ? I tried putting it in "" but got the same error There is somethiung basic and blatantly obvious that I am...
  3. chorgan

    Redirect output from csh script

    Basically my script contains one very long command to start an application , the problem is it is generating a warning and i dont want that warning to be displayed how do i redirect the o/p of the command to a file and not to the screen so the user wont see it?
  4. chorgan

    Help Trying to read from 2 files at same time

    Thank you so much, it works ;-)
  5. chorgan

    Help Trying to read from 2 files at same time

    Im trying to produce results like Line from fileA Line from fileB Line from fileA Line from fileB etc I have code like this while(<fileA>) { print line open fileB while(<fileB>) { some processing print line from fileB } close(fileB); } close(fileA); Im using $_ to access a line...

Part and Inventory Search

Back
Top