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 SkipVought 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. scor6800

    Edit Existing Weblogic Application

    Hi, I am a beginner in JDeveloper. I want to edit an existing web application. The app runs in weblogic and contains jsp's and java classes/libs. Can you please guide me in opening this app through Jdevloper? I want to be able to edit it and run it. NOTE: I have configured Weblogic connection
  2. scor6800

    /variable-name/

    Yes, it did work! I thought that "~" goes always with /.../. Thanks PHV.
  3. scor6800

    /variable-name/

    Hi, I call an awk program passing a param from command-line. I want to see if a line from my input filename suits to the passing variable. I can't use $0 ~ /varname/ {...} because awk understands varname as a string. Any ideas?
  4. scor6800

    Change Field seperator within awk

    $0=$0 !!! I could never think of it by myself. Thank you very much. It worked fine.
  5. scor6800

    Change Field seperator within awk

    Hi, this is my 1st question. I have a file seperated by " ". I want to say that if my 1st field match to a specific string then Change FS to "/" and take the last field. Then change again the FS to " ". The following doesn't work: BEGIN{FS=" "} {if ($1 ~ "DDL") {FS="\/"; print $NF; FS=" "}...

Part and Inventory Search

Back
Top