Lazy checking website’s SSL certs

Thursday, 05. 11. 2006  –  Category: all, stash

I wanted to avoid RSI checking the browser’s padlock on every site I’d just updated a SSL cert for:
[lemon@core ~ ] 0 $ for z in 4 5 6 7 8 9 10 11 12 ; do echo ‘GET /’ | openssl s_client -connect devgateway${z}.foo.co.uk:443 2>&1 | openssl x509 -text | grep -i ‘Not Before’ [...]

stash: fixup DOS line termination

Wednesday, 10. 26. 2005  –  Category: all, stash

Inevitable evil: developer drops off a load of content with DOS line endings, flutzing up editor screens with ^M.
$ find /some/path -type f -exec perl -pi -e’y/\015//d;’ \{\} \;
It’d be nicer to used xargs(1) instead of find(1)’s own -exec flag - way more efficient. However, chances are that if there’s borked line endings in a [...]