Original Font | Google Free Font | Usage |
---|---|---|
Scala Sans | Alegreya Sans | Tables, info boxes, examples of play, character sheet |
Scala Sans Caps | Alegreya Sans SC | Table and info box heading, page numbers |
Modesto Bold Condensed | Girassol Red Rose Alegreya SC | Cover |
Mrs Eaves Small Caps | Libre Baskerville | Headi |
Бесплатная книга-сайт на русском, полный гайд
Advanced Bash-Scripting Guide
BASH — Bourne-Again SHell (что может переводится как «перерожденный шел», или «Снова шел Борна(создатель sh)»), самый популярный командный интерпретатор в юниксоподобных системах, в особенности в GNU/Linux. Ниже приведу ряд встроенных команд, которые мы будем использовать для создания своих скриптов.
>break
выход из цикла for, while или until
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
type Node struct { | |
Value int | |
} |