|
|
|
|
|
by darylfritz
3162 days ago
|
|
> Sort of like how I can apt upgrade while apt update is still running but fancier You can link two commands together with the "AND IF" operator sudo apt update && sudo apt upgrade
Furthermore, you also have `||` which is the logical or, and also `;` which is just a separator which doesn't care what happend to the command before. |
|