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

  • Users: TanyaB
  • Order by date
  1. TanyaB

    handle dependencies tree

    Hi all, question : got a perl script, that get from table list of dependencies between processes. For example, b1 depend on a1; c1 depend on b1... What is the best way to check for dependencies deadlocks - if, say, b2 depend on a2 and a2 mistakingly defined depend on b2? I was thinking about...
  2. TanyaB

    Manipulate Month from string to number

    Thanks! Actually, i was trying with all this localtime and timelocals... but this is actually much easier :) thanks!
  3. TanyaB

    Manipulate Month from string to number

    Hi all, Question: In my script, i get the file's creation month in locale's abbreviated month name format ( as 'date +%b' in unix - Jan, Feb and so on); what's the easiest way to convert it to month's number? thanks in advnce.
  4. TanyaB

    send a message to all users

    I would like to send a message to all users, which are connected to the weblogic before I shutdown the weblogic. What's the easiest way to do it?
  5. TanyaB

    Word document to Excel

    Hi, I would try to: 1. Convert doc to txt using word; 2. Excell->File->Open ( mark "all files" ) -> your txt file; 3. It should open "Text Import Wizard", from there - mark "Delemited and "Next", - choose actual delimeter and Finish.
  6. TanyaB

    Alias in KSH

    Hi, In tcsh you can define alias with "!*" - command-line args. How can I do the same in ksh ?
  7. TanyaB

    Empty lines in input file

    Thanks !!!! It works !!!
  8. TanyaB

    Empty lines in input file

    Hi, I have a KSH script that read lines from input file and process them one by one: while read line ; do ############## done < $ConfigFile I want to make sure, that input line is not comment (#) or empty line; for comment I've come up with if echo $line | grep '^\#' >/dev/null ;then...
  9. TanyaB

    Error while using rmtree

    Hi, I got this error when running my script, it users rmtree function: Can't remove directory /USG2FRD/USERS/frdoper/var/fr/extract: Device busy at /USG2FRD/USERS/frdoper/tlg_home/op_bin/OpCleanup line 41 ... I've checked permissions of directory - and it's OK. What could be the couse of this...
  10. TanyaB

    Subtract String problem

    Hi, I have very long string, pointer to start of sub-string inside it and pointer to end of sub-string ... How can I extract the substring ?
  11. TanyaB

    FPRINF question

    Thanks !!!!! It worked !!!!!
  12. TanyaB

    FPRINF question

    I've got the program that send many error messages to some output file using fprintf; I need to change file with stderr according to value of some environmetal variable; the problem that I have MANY fprintf's in code, and I don't want every time do :if...
  13. TanyaB

    Misuse error message on HP server B.11.00

    Hi, I've get error &quot;Due to misuse, a reboot is required&quot; for every program starting executing on server; Does anybody knows about this problem ?
  14. TanyaB

    How to get list of Print flags ?

    Hi, Does anybody knows how to get list of valid print flags for defined printer ? Didn't find in man of lp anything helpful...
  15. TanyaB

    mkdir failure

    Thanks dobbyn. Actually, it's exactly what's happend...
  16. TanyaB

    mkdir failure

    Hi, When I try to mkfir I get this error message: mkdir ske mkdir: cannot create ske: Too many links What could be a problem ?
  17. TanyaB

    Help with parsing the string

    Hi all, please help me with this issue: My program get Oracle connect string that looks like this: username/password@dbinstance How can I parse it to 3 strings( username,password,instance) ?

Part and Inventory Search

Back
Top