DEV Community

Discussion on: The Only Bash Scripting Cheat Sheet That You Will Ever Need

Collapse
 
vannijnatten profile image
Jos van Nijnatten

I would like to add 1) string replacement via ${var/pattern/replacement} or removal at start or end, 2) fifo objects using <(command-with-output), 3) the ways to pipe from ‘find’ (-print0) or ‘grep’(-null) to ‘xargs’(-0), 4) tools such as find, grep, sed, awk, xargs, cut, tr, etc (not strictly bash, these last two). Otherwise, yea probs all you need. Well done!