Skip to content
Shell & Terminal RSS feed

Shell & Terminal posts

Bash, Zsh, sh, tcsh, and the TUI tools built on top of them — prompts, scripting, multiplexers, and terminal troubleshooting.

Shell & TerminalDeep Dive 5 min read

Command Substitution vs Process Substitution

$(command) captures text; <(command) exposes a live stream as a path-like argument. Buffering, exit-status visibility, and portability differ sharply.

#deep-dive#bash#substitution
Read more
Shell & TerminalFix 3 min read

Fixing CRLF Line Endings in Shell Scripts

Errors like bad interpreter and $' ': command not found mean carriage returns reached a Unix shell script — confirm bytes, convert, enforce Git policy.

#fix#crlf#git
Read more