Tonka Truck
I like to think I’m a decent programmer with many lessons learned. Staff Engineer, 10YoE, Go, Java+Spring, DevOps, and Security (OWASP ASVS/Top10).
Shift security so far left, my product owner talks a little AppSec.
- 0 Posts
- 1 Comment
Joined 2 years ago
Cake day: June 7th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
It’s basically doing step by step print lines for you. If you have easy access to a bash prompt here’s an example (for clarity, the lines leading with
$
are what I typed into the shell. The lines without are what is output’d):$ set -x $ echo `expr 10 + 20 ` ++ expr 10 + 20 + echo 30 30
$ set +x $ echo `expr 10 + 20 ` 30
You see how the first example broke down what happened bit by bit and the
+
noted the depth of interpretation for the line? This basically helps debug narly scripts … which if they’re narly enough … just rewrite them in a “proper” language.What’s that old google adage ( https://google.github.io/styleguide/shellguide.html )