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
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?
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=" "}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.