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 TouchToneTommy 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 rahill13

  1. rahill13

    Using the find command with the remove command

    Removing the \ fixed the problem. Thanks alot, Bobby Hill
  2. rahill13

    Using the find command with the remove command

    I am trying to use the find command to locate log and other dump files more than 90 days old and delete them, but the command is not working correctly. ***COMMAND*** #find /dump/spool -atime +90 -exec \ rm {} \; ***SAMPLE OF RESULTS**** find: 0652-083 Cannot execute rm:: A file or...
  3. rahill13

    Problem getting entire record when using grep on a file

    I'm using grep to read a file and strip the header records out and feed it to another file. I'm not getting all of the record; grep is chopping off the tailend of the record. It looks like I only get 250 bytes of the record. Any suggestions??????? grep -v "***TOTAL***" file1 > file2
  4. rahill13

    Script moved from HP-UX to AIX not working properly

    The issue has been resolved. Two programmers made a change a few months back, and the problem didn't surface until we had a holiday. GROUP1=`head -n1 gl_file.tmp1 | cut -c34-41` NEEDED CHANGES GROUP1=`head -n1 gl_file.tmp1 | cut -c33-43` Thanks to all that replied.
  5. rahill13

    Script moved from HP-UX to AIX not working properly

    This is a faily lengthly script. It moves a file from a mainframe to a Unix box, and updates an Oracle interface table. The data is pulled from the table by an oracle application job at a later time. The part of the script that is not working the the part that prevents duplicate entires from...
  6. rahill13

    Script moved from HP-UX to AIX not working properly

    I posted this once, and now I can't find it.

Part and Inventory Search

Back
Top