Run "file /usr/bin/* | grep -i perl | wc -l" on your computer. You will be surprised.
EDIT: if you want a histogram for all the types of programs in your system, run this
file -bL /usr/bin/* | cut -d' ' -f1-3 | sort | uniq -c | sort
Run "file /usr/bin/* | grep -i perl | wc -l" on your computer. You will be surprised.
EDIT: if you want a histogram for all the types of programs in your system, run this