Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSurya D.
629 PointsI don't understand what this means.
In the console we write
treehouse:~/workspace$ clear && javac TreeStory.java && java TreeStory^C
Can someone give a step-by-step instructions toward what everything means and why it's in the sentence? Also, is there an alternative to that line of code? Can someone refresh my memory on what is does also? -Thanks!
1 Answer
Steven Parker
231,184 PointsThere's 3 separate commands here, let's break it down:
clear
Clear the screen
javac TreeStory.java
Compile the program in the source file "TreeStory.java"
java TreeStory
Run the compiled program
The double ampersands ("&&
") separate multiple commands on the same line, plus they mean "if the command on the left was successful, continue to the right". So if any command fails, nothing else on the line will be done.
The obvious alternative is to type each command in separately and wait for it to finish before going on.