suff

joined 6 months ago
[–] suff@piefed.social 0 points 3 days ago (6 children)

In which f*ssil country is power cheaper at night!?

[–] suff@piefed.social 11 points 4 days ago

Tubular for Android of which I thought it uses yt_dlp, still works well.

[–] suff@piefed.social 14 points 6 days ago* (last edited 6 days ago)

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.