./DUMB_TERMINAL_BLOG/

// Programming insights from the command line

Hello world!

Because all good coding blogs must have this post first.

#include <stdio.h>

int main() {
    printf("Hello, World!");
    return 0;
}

Nuff said.

GREP_SEARCH

$ find /home1/nbfgusmy/public_html/website_a7bbcdc7/ -type f -name ".php" -o -name ".md" | xargs grep -n
-i : ignore case -r : recursive search -n : show line numbers --include="*.{php,js,css,md}"
Establishing connection to Dumb Terminal mainframe...