Skip to content

Instantly share code, notes, and snippets.

View 173duprot's full-sized avatar

tinydev.art 173duprot

View GitHub Profile
@173duprot
173duprot / IRC client in pure bash 4
Created July 14, 2021 18:55 — forked from anonymous/IRC client in pure bash 4
IRC client written in pure bash using only bash builtin commands and no other binaries.
#!/bin/bash
#no PATH, no way to accidently run any programs
PATH=''
#useful variables
term_height=0
term_width=0
term_scroll_height=0
status_line_row=0