2 bookmarks for 2023-11-06

Как пожарить сулугуни. Надо попробовать. Я люблю жареное и сулугуни. Смесь должна тоже понравиться!

# food
836.

Bash strict mode.

set -euxo pipefail

The -x is sometimes not needed, it prints out every input back. So, this is an option:

set -euo pipefail
# bash
835.