Last Updated: February 25, 2016
·
693
· sheerun

Find out reliably if Debian system is 64 or 32 bit one.

cat /proc/cpuinfo | grep flags | grep lm &> /dev/null && echo "64" || echo "32"