Thanks but I don't think I want a microblogging-UI within piefed but a translation into communities.
suff @ suff @piefed.social Posts 7Comments 33Joined 7 mo. ago
suff @ suff @piefed.social
Posts
7
Comments
33
Joined
7 mo. ago
Explanation
[
is an alias for the programtest
, so you can callman 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 callman 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
andfalse
are programs that just return exit codes 0 respectively 1.