Old UNIX code from 1979. This is very interesting.

This very old UNIX source code from 1979. This is source code for the Bourne shell. This code looks alien compared to modern C code, I wonder if it would even compile on a modern machine. Have a look here: https://minnie.tuhs.org/cgi-bin/utree.pl?file=V7/usr/src/cmd/sh/expand.c. But I installed all the include files and it would not compile on Kali … Read more

Cool BASH script that I thought I would share. Print out all of the BASH colors.

This is a BASH shell script that will print all of the available colors using the BASH shell. The colors are useful for colorizing your BASH prompt to differentiate it from your shell output. #!/bin/bash   # colors.sh – Print out all the different ECMA color-mod combos # # 2008 – Mike Golvach – [email protected]Read more

Sample Google Android commands output.

This is the output of the uname command on my Android tablet. # uname Linux version 2.6.29-s70 ([email protected]) (gcc version 4.4.0 (GCC) ) #8 PREEMPT Wed Oct 27 21:55:55 CST 2010# uname Linux version 2.6.29-s70 ([email protected]) (gcc version 4.4.0 (GCC) ) #8 PREEMPT Wed Oct 27 21:55:55 CST 2010 And this is the output of … Read more