2025-03-14 21:59:59 -06:00
|
|
|
# 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`
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
- Start an interactive shell session [f]aster without loading startup configs:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
`csh -f`
|
|
|
|
|
|
|
|
|
|
- Execute specific [c]ommands:
|
|
|
|
|
|
|
|
|
|
`csh -c "{{echo 'csh is executed'}}"`
|
|
|
|
|
|
|
|
|
|
- Execute a specific script:
|
|
|
|
|
|
|
|
|
|
`csh {{path/to/script.csh}}`
|