Find total filesize of all WAV files in a directory using command line tools
Use this command to find the total file size of all .wav
files (including .WAV
files)
find . -name "*.wav" -or -name "*.WAV" -exec du -ch {} + | tail -n 1
Example output:
6,7G total
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow