1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/tcsh.md
2021-11-14 20:35:13 +01:00

460 B

tcsh

C shell with file name completion and command line editing. More information: https://manned.org/tcsh.

  • Start an interactive shell session:

tcsh

  • Start an interactive shell session without loading startup configs:

tcsh -f

  • Execute a [c]ommand:

tcsh -c "{{command}}"

  • Execute a script:

tcsh {{path/to/script.tcsh}}

  • Check a script for syntax errors:

tcsh -n {{path/to/script.tcsh}}

  • Print the version:

tcsh --version