Skip to content

All posts — Page 8

Operating systems, infrastructure, emulation, and technical history.

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