| title | Setup |
|---|
Instructions for Windows, macOS and Linux are available below. Please, also download [Documents.zip]({{ page.root }}{% link files/Documents.zip %}).
{:. #windows}
Download the Cygwin installer and run the installer. On the "Choosing Packages" step, include
- sed
- gawk
- make
To select one package for installation, click on the respective "Skip" in the "New" column.
{:. #macos}
The default shell in all versions of macOS is Bash,
so no need to install it.
You access Bash from the Terminal (found in /Applications/Utilities).
To install sed, awk and make, you can use Homebrew. From the terminal, run
$ brew install gnu-sed gawk make
{:. #linux}
The default shell is usually Bash,
so no need to install it.
If your machine is set up differently you can run it by opening a terminal and typing bash.
Install sed, awk and make using the package manager provided by your distribution. Instructions for Debian and Red Hat/CentOS/Fedora are provided below.
From the terminal, run
$ sudo apt-get install sed gawk make
From the terminal, run
$ sudo dnf install sed gawk make
{% include links.md %}
