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_wav_total_size.sh
find . -name "*.wav" -or -name "*.WAV" -exec du -ch {} + | tail -n 1Example output:
find_wav_total_size_output.txt
6,7G totalCheck out similar posts by category:
Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow