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 bkrike 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: *

  • Users: schocku
  • Content: Threads
  • Order by date
  1. schocku

    ps option to list all child processes...

    I have a main.ksh that executes a perl script and which in turn spawns child ksh processes and awk scripts. I have main.ksh in crontab to run every 10 mins. Is there a way to make sure that neither an earlier version of main.ksh or ANY OF ITS CHILD PROCESSES are running when crontab starts...
  2. schocku

    merge question

    I have a text file with contents as follows that will be loaded into a database table: 600193439^_600076830^_600193439^_2^^ 600193430^_600076827^_600193430^_6^^ 600192222^_600076830^_600191112^_2^^ 600333333^_600076830^_600193111^_2^^ ... ... The table has columns 2 and 4 as the primary keys...
  3. schocku

    compress tar question

    Simple question... * I have a a.tar.Z compressed file in directory A. * I want to uncompress and untar the files in a.tar.Z and put them in directory B. Is there a more efficient way than doing it in 3 steps... - cp A/a.tar.Z B/. - uncompress B/a.tar.Z - tar -xvf B/a.tar Thanks for your help.
  4. schocku

    parse file and delete field

    Hi everybody, I have a file (a.dat) with the following data in it : 10/17/2003^F^555555^F^333^F^HELLO^F^04-15-2003^R^ 10/17/2003^F^444444^F^11^F^^F^09-15-2003^R^ 10/17/2003^F^555555^F^333^F^WATER^F^04-15-2003^R^ 10/17/2003^F^^F^333^F^FIRE^F^04-15-2003^R^...
  5. schocku

    parse file and delete field

    Hi everybody, I have a file (a.dat) with the following data in it : 10/17/2003^F^555555^F^333^F^HELLO^F^04-15-2003^R^ 10/17/2003^F^444444^F^11^F^^F^09-15-2003^R^ 10/17/2003^F^555555^F^333^F^WATER^F^04-15-2003^R^ 10/17/2003^F^^F^333^F^FIRE^F^04-15-2003^R^...
  6. schocku

    pass variable to next page

    I have a button and everytime the button is clicked I need to pass a string variable to the next jsp page. Can you please help me with a script for this : <INPUT type=&quot;button&quot; value=&quot;Edit&quot; onClick=&quot;????&quot;> Thanks for you help in advance.
  7. schocku

    search pattern and get line 46 before its occurance

    Hi all. I have a fixed format log file with content as follows : ======== 06/18/2003 12:00:00:008 blah blah 06/18/2003 12:00:02:010 blah blah .. .. .. 06/18/2003 12:00:00:016 blah blah 06/18/2003 12:00:03:020 submission 124304 .. .. 06/18/2003 12:00:04:200 blah blah 06/18/2003 12:00:05:020...
  8. schocku

    insert characters in each line of a file.

    Simple awk/sed question. My input file is as follows : abc ddfdf fjjjjj dffdff I need to insert a ' at the beginning of each line and insert ', at the end of each line. So the output should look like 'abc', 'ddfdf', 'fjjjjj', 'dffdff, Thanks in advance for your help.
  9. schocku

    variable substituion in xsl...

    I am calling the template PrintFullMessage as follows : <xsl:call-template name=&quot;PrintFullMessage&quot;> <xsl:with-param name=&quot;mIDParam&quot; select=&quot;$mID&quot;/> <xsl:with-param name=&quot;mPosParam&quot; select=&quot;$mPos2&quot;/> <xsl:with-param...
  10. schocku

    Retrieving Public Variable

    Hi all, I am having a wierd problem here. I have declared a public variable in my General Declarations section as Public gdata_model_name As String I am not able to access this variable in any form other than the one in which it is declared. Does anyone know what I am missing here ? Thanks...

Part and Inventory Search

Back
Top