I don't know if I'm wording it correctly, but I'm counting file types and outputting the results into a file, and instead of there just being numbers, I'm trying to identify what each number is. Sooo basically right now I have:
$ find . -type f -iname *.jpg* | wc -l > Test.md $ find . -type f -iname *.png* | wc -l >> Test.md $ find . -type f -iname *.tiff* | wc -l >> Test.md and when I cat Test.md I get:
$ cat Test.md 13 10 8 and what I'm trying to do is:
JPG: 13 PNG: 10 TIFF: 8