So I'm trying to zip up a large number of files, but I want to see the total size of the files before I start zipping.
Before executing the following command to archive the files:
7za a files.7z files_2014-11-03*
I need to make sure I'm not zipping up too many files at once.
I used this command to find what I needed:
find -type f -name 'files_2014-11-03*' | wc -l
Is there something else I can pipe this to to get my wanted results?