What would you like to see in a Linux command line workshop? Starting with the basics but would love input to make it what people need!
specifically when working with large/unfamiliar codebases `grep -nr` (print file/line, recursive) for function decls/invocations, struct decls, typedefs etc
-
-
makes it very simple/fast to figure out What Is This Even in a codebase I've never seen before when trying to fix bugs or etc
-
also for bulk changes `grep -Zl` or `find . -name whatever -print0` piped to `xargs -0 sed -n 's/foo/far/p` prints all resulting lines w/o doing anything
-
then when happy with result remove p in pattern and change -n to -i to actually perform changes
-
(not sure if overly specific but this is more or less the sum of What I Wish I'd Been Told rather than gradually figuring it out on the job)
End of conversation
New conversation -
Loading seems to be taking a while.
Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.