1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 05:22:11 +02:00
tldr/pages/common/csh.md
2022-06-05 02:15:56 -03:00

21 lines
410 B
Markdown

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