Get SSH Key Fingerprint Get link Facebook X Pinterest Email Other Apps September 19, 2012 ssh-keygen -lf /etc/ssh/ssh_host_rsa_key.pub Read more
Count Files/Directories/Links in *nix Get link Facebook X Pinterest Email Other Apps September 12, 2012 for t in files links directories; do echo `find . -maxdepth 1 -type ${t:0:1} | wc -l` $t; done 2> /dev/null -maxdepth 1 specifies how far to count files Read more