From 1ca47f73fe83a70c52fef99881ec6b8fda6e1061 Mon Sep 17 00:00:00 2001 From: Joshua Pickard Date: Tue, 24 Oct 2023 16:46:33 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 253ec28..9384161 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ This creates `threads.html` and extracts all information into the directory. ```ls *.mp4 | cat -n``` +### Compare Differences in two text files + +`diff file1 file2` + ### Recursively Zip subdirectories into their own .zip files ```for i in */; do zip -r "${i%/}.zip" "$i"; done```