mirror of
https://github.com/Piebald-AI/claude-code-system-prompts.git
synced 2026-06-13 14:43:33 +08:00
580 B
580 B
PowerShell edition: PowerShell 7+ (pwsh)
- Pipeline chain operators
&&and||ARE available and work like bash. Prefercmd1 && cmd2overcmd1; cmd2when cmd2 should only run if cmd1 succeeds. - Ternary (
$cond ? $a : $b), null-coalescing (??), and null-conditional (?.) operators are available. - Default file encoding is UTF-8 without BOM.