Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

erlang oneliner + wezterm and ghostty terminals #454

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ Only main chapters:
&nbsp;&nbsp; <a href="https://gnometerminator.blogspot.com/p/introduction.html"><b>Terminator</b></a> - is based on GNOME Terminal, useful features for sysadmins and other users.<br>
&nbsp;&nbsp; <a href="https://sw.kovidgoyal.net/kitty/"><b>Kitty</b></a> - is a GPU based terminal emulator that supports smooth scrolling and images.<br>
&nbsp;&nbsp; <a href="https://github.com/alacritty/alacritty"><b>Alacritty</b></a> - is a fast, cross-platform, OpenGL terminal emulator.<br>
&nbsp;&nbsp; <a href="https://github.com/wez/wezterm"><b>Wezterm</b></a> - is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust.<br>
&nbsp;&nbsp; <a href="https://github.com/ghostty-org/ghostty"><b>Ghostty</b></a> - is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration.<br>
</p>

##### :black_small_square: Network
Expand Down Expand Up @@ -1712,6 +1714,8 @@ text :arrow_left: encoded
* [certbot](#tool-certbot)
* [network-other](#tool-network-other)
* [git](#tool-git)
* [python](#tool-python)
* [erlang](#tool-erlang)
* [awk](#tool-awk)
* [sed](#tool-sed)
* [grep](#tool-grep)
Expand Down Expand Up @@ -4043,6 +4047,16 @@ python -m base64 -e <<< "sample string"
python -m base64 -d <<< "dGhpcyBpcyBlbmNvZGVkCg=="
```

##### Tool: [erlang](https://www.erlang.org/)

###### Static HTTP web server

```bash
erl -S httpd serve --port 8000 /path/to/serve
```

___

##### Tool: [awk](http://www.grymoire.com/Unix/Awk.html)

###### Search for matching lines
Expand Down