Skip to content

Instantly share code, notes, and snippets.

View grommitz's full-sized avatar

Martin Charlesworth grommitz

View GitHub Profile
@elton-alves
elton-alves / keytool-self-signed-certificate.md
Last active May 20, 2024 05:14
Self signed certificates with keytool
@evansd
evansd / gist:1639992
Created January 19, 2012 13:09
Global find and replace using ack
function substitute {
if [ -z "$1" -o -z "$2" ]; then
echo "Usage: substitue FROM_STRING TO_STRING [OPTION]..."
echo
echo "Replace all occurances of FROM_STRING (a sed-compatible regular"
echo "expression) with TO_STRING in all files for which ack-grep matches"
echo "FROM_STRING."
echo
echo "Any additional options are passed directly to ack-grep (e.g.,"
echo " --type=html would only run the substitution on html files)."