Tag Archives: bash

The ssl perfect guide

Unfortunately this website doesn’t have a name, nerthless the explanations are really accurate: http://209.197.80.93/article/setting-ssl-certificates-apache

Posted in How To, Server, Unix, tips and tricks | Tagged , , , | Leave a comment

Connect POP3 account via telnet

Ok… it happens sometimes we need to check our pop3 account and we don’t really want to configure our mail client. The solution is to just open our terminal and telnet it: telnet mail.scoditti.com 110 Trying 82.246.188.84… Connected to mail.scoditti.com. … Continue reading

Posted in OS X, Unix, tips and tricks | Tagged , , , , | Leave a comment

Cat and Grep multiple files

When we need to find something in a file using bash we use to write: cat <file>.<ext> | grep <str> But what if we want to search in multiple files? cat *.<ext> | grep <str>  *.<ext>

Posted in Unix, shell, tips and tricks | Tagged , , , | Leave a comment