Programming > CLI > Flashcards
Why is ; better than && when running multiple commands?
If && is used and a command fails, the rest are not executed. With ; that is not the case.