From 21a24260ee2560a6ac4f924106ab7db17b45103f Mon Sep 17 00:00:00 2001 From: Joshua Pickard Date: Thu, 2 Feb 2023 15:37:20 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 26cc844..42c2bc5 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ This creates `threads.html` and extracts all information into the directory. ## File Management +### List number of files (for instance, # of .mp4) + +```ls *.mp4 | cat -n``` + ### Recursively Zip subdirectories into their own .zip files ```for i in */; do zip -r "${i%/}.zip" "$i"; done```