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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. upilliappan

    Exception in a regular expression

    Hi I ma getting the following error while executing the script . Error message # ./check_syntax ./check_syntax: line 115: syntax error near unexpected token `(' ./check_syntax: line 115: ` /[A-Z]\=\`*\`/ { printf("\"%s\"\n", $0); next } \' The line 115 is...
  2. upilliappan

    Find and Replace

    Hi I have a logfile as follows ****************** timeout=100 users=120 home=/usr/kevin capacity=222 capacity=666 ******************* I want to grep for the pattern "capacity=" and remove the characters following it. **************************** timeout=100 users=120 home=/usr/kevin...
  3. upilliappan

    Shared server problem

    Hi I have configure shared server and when I connect using SQLPLUS sqlplus user/passowrd@database i get kicked off after 2-3 seconds.. The error message is ora-3113 end of file communication . No trace files are created in udump or bdump. Thanks for your help Upilli
  4. upilliappan

    filename with Timestamp in Cronoutput

    Hi I am using Linux Redhat and I have a cronjob scheduled. I would like to redirect the output to a filename with data and time . I tried the following syntax but it didn't work 10 * * * * * list_files.sh > /tmp/list_files`date`.log My requirement is the listfiles script should spool...
  5. upilliappan

    Unix find with size dosen't work

    Hi I am having the following find commnand to find logfiles which are greater than 100k in size and list them find /oracle \( -name "*.log" -a ! -name "alert_*" \) -o -name "*.trc" -o -name "*.trw" -o -name "core.*" -type f -size +100k | xargs ls -l . The output from the command contains...
  6. upilliappan

    Find logfiles and move exclude one file name

    Hi I have an requirement to find all logfiles under a directory and move them to another partition. But I need to exclude all files begining with alert_. I am using the following command to find and move all log files. find $dirs -name "*.log" -o -name "*.trc" -o -name "*.trw" -o -name...

Part and Inventory Search

Back
Top