Zach PfefferNov 24, 2018A Simple MakefileClick [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...
Zach PfefferJul 22, 2018TCPEchoClient.c With More Error CheckingTake a look at https://www.centennialsoftwaresolutions.com/blog/tcpechoclient-c-with-more-error-checking to see a derivative of...
Zach PfefferMay 29, 2018find every file updated by a commandtouch start; <DO STUFF>; find . -cnewer start -printf "%T+\t%p\n" | sort
Zach PfefferMay 24, 2018Find all text filesThis blog is a repost of the best answer I've found to-date for: find all text files. It also contains some additional info on how the...
Zach PfefferMay 8, 2018Find files updated less then 3 minutes ago, less then 10 minutes agoTo find a file that was update 3 minutes ago on Linux type find . -cmin 3 To find a file that was updated 10 minutes ago type: find . -cmin
Zach PfefferApr 11, 2018Print the name of a file and the file's contentsThis 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...