No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
I recently ran the following command from the command line and it worked find . -name '*jrAPS*_ouput.log' -exec grep '<string expression>' {}\; -print I put it in a shell script like this and it did not work find . -name '*jrAPS*_output.log' -exec grep '<string expression>' {} \\\; -print the result …
I lost the state/design view in NetBeans 6.9 my project now only shows in the edit/source view. How can I get back the States/Design view that existed when I created the project as a JavaFX Business Desktop Application?
You need to make sure that the directory that contains javac.exe is on your Classpath. Check the procject properties. My recommendation would be to download NetBeans with the JDK this way you won't have to worry about point your project to where you installed the JDK. [QUOTE=Clawsy;1152493]Hi, I just struggeled …
I am not a new member, but I want to introduce myself anyway. I am a programmer analyst working with a major Oracle Forms/ Oracle Application. From time to time I do some Pro C programming and PL/SQL, but the majority of my work centers around production of reports using …
The shell script could do this #!/usr/bin/sh <put program name here> if [ -a output1.txt ]; then mv output1.txt 1.txt else echo "file: was not written" fi <put next program name here> if [ -a output2.txt ]; then mv output2.txt 2.txt else echo "file: was not written" fi . . …
The End.
iparkin