top of page
Search
Aug 17, 20191 min read
Create a Tree-View of a Directory on Linux with 'tree'
This post shows you how to create a tree-view of a directory on Linux (Ubuntu). Install and Use Tree To create a tree view of a directory...
Nov 23, 20181 min read
A Simple Makefile
Click [here] for a simple Makefile and the UDPEchoClient.c and UDPEchoServer.c code from p. 54-59 of TCP/IP Sockets in C: Practical Guide...
May 19, 20181 min read
find sort by date
find . your-options -printf "%T+\t%p\n" | sort
Apr 26, 20181 min read
tar.gz up a dir / tar.gz extract
tar -cvzf directory.tar.gz directory; tar -xvzf directory.tar.gz
Apr 11, 20181 min read
Print the name of a file and the file's contents
This post lists a Linux command that will print the name of a file and then print the contents of that file. The following command will...
bottom of page