Files
cheatsheet-tldr/tldr/csh
2025-10-17 00:19:47 +00:00

27 lines
512 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# csh
> The shell (command interpreter) with C-like syntax.
> See also: `tcsh`.
> More information: <https://www.mkssoftware.com/docs/man1/csh.1.asp>.
- Start an interactive shell session:
`csh`
- Start an interactive shell session [f]aster without loading startup configs:
`csh -f`
- Execute specific [c]ommands:
`csh -c "{{echo 'csh is executed'}}"`
- Execute a specific script:
`csh {{path/to/script.csh}}`