There are several apps that do the same
- Mullvad (the Browser?) and Brave
- K-9 Mail and Proton Mail
- Aegis, Aurora and F-Droid
- Brawl Allstar, Roblox and Tiktok
Think about deduplication.
There are several apps that do the same
Think about deduplication.
Alternative to brain rot?
Explanation
[ is an alias for the program test, so you can call man test for more info.
&& is bash syntax for conjunction. In A && B, B will only be called if A returned a exit code >0 (error). You can call man bash for more info.
|| is bash syntax for disjunction. In A || B, B will only be called if A returned exit code =0 (success).
true and false are programs that just return exit codes 0 respectively 1.
My bad