Files
general-scripts-and-system-…/References/Quick-and-Dirty-Methods-Bash.md
T
2026-05-22 20:36:56 -06:00

5 lines
140 B
Markdown

# 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
```