23 Şubat 2021 Salı tarihinde Léa Gris <lea.g...@noiraude.net> yazdı:
> https://ideone.com/iw2pSv > > #!/usr/bin/env bash >> declare -r r >> r=2 || exit 2 > > There is no command substitution in `r=2', it will either succeed and return zero, or fail and cause the shell to discard the whole command (`r=2 || exit 2'); `exit 2' is unreachable there. -- Oğuz