Hacker News new | past | comments | ask | show | jobs | submit login

Run md5sum on your 160 git binaries. Notice that 100 of them have the same checksum. This is because they're hardlinked to the same binary.



That still leaves around 60 unique binaries.

<pre> find /usr/lib/git-core -type f -exec md5sum {} \; | cut -d' ' -f 1 | sort | uniq | wc -l 68 </pre>

Comparing from TeX: <pre> pacman -Ql texlive-bin | grep '/usr/bin' | cut -d' ' -f 2 | xargs md5sum | cut -d' ' -f 1 | sort | uniq | wc -l 181 </pre>


I have 50 left, and running `file` on them shows that 40 of them are shell script wrappers around `git`.




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: