1779503816

This commit is contained in:
2026-05-22 20:36:56 -06:00
parent 07aaf17ce1
commit c8d0979360
2 changed files with 4 additions and 0 deletions
@@ -0,0 +1,5 @@
# Quick and Dirty Methods (Bash)
show every set variale and its value (one liner)
```bash
for v in $(compgen -v); do echo "$v:$$v"; done
```