-
Add new tag apache awk awk example bashscript chroot clients code cyrus find ip of apache host find ip of vhost find vhosts gentoo gentoo webserver tomcat howto non-root grep grep example hardware howto imap index indexes jail layman lighttpd Linux mod_dnsbl nslookup openssh overlay portage proftpd projects recover request tracker rescue rt scp search engine server setup sftp Software vhost Webserver wolfram alpha
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Categories
Monthly Archives: July 2008
recursive md5 hashing with Linux
The problem: You need a md5sum of a directory. Unfortunately, md5sum just accepts files as input. The solution: Let’s use find! Okay. Here we go: find DIRECTORY -type f -exec md5sum ‘{}’ \; | md5sum – | awk ‘{print $1}’ … Continue reading