Bash Patterns I Use Weekly
1. Find and replace a pattern in a codebase with capture groups
git grep -l pattern | xargs gsed -ri 's|pat(tern)|\1s are birds|g'
git grep -l: make sure we're only looking for files in our codebase (ag -lis another good option)xargs: allow running this withgsed -igsed -i: edit files (default macsedis bad, so gnu-sed is essential)gsed -r: use regular expression for the pattern to allow capture groupss|: the first character after thesis used as the delimiter./is pretty consistently annoying because it's used in file paths & urls.gsed '...': the single quotes are important to avoid escapes's|pat(tern)|\1s are birds|g': being able to easily use capture groups in a find and replace is amazing. Your editor's search and replace will support capture groups, but I like being able to make changes like this in a script.|g: replace this multiple times in a line
2. Use while loops to re-run a command until it starts failing (or succeeding)
while command; do git checkout HEAD^; done;
This command will continue to run a check until a commit causes it to start failing. It's a lazy git bisect.
while command: As long ascommandexits successfully (with a 0), this loop will keep going. (this is whywhile true;works! The same thing works withif:if git grep yay; then echo "found yay"; fi)git checkout HEAD^: go back in time.- git bisect is the "real" way to do this, but it's not something I've ever needed, and
while commandandwhile ! commandare both generally useful to know - A similar pattern to poll until something succeeds could be
while ! curl localhost:8080; do sleep 1; done;.
3. Parallelize running commands by grabbing PIDs.
pids="";
do_thing_1 &
pids="$pids $!"
do_thing_2 &
pids="$pids $!"
EXIT_CODE=0
for p in $pids; do
if ! wait $p; then EXIT_CODE=1; fi
done
exit $EXIT_CODE;
4. Use $SECONDS to track how long things take
echo "Your command completed after $SECONDS seconds";
- Try running this in your shell:
SECONDS=0; sleep 5; echo $SECONDS; - I often prefer this over
timewhen setting up logs for a script