mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 16:35:44 +02:00
tcsh: add page (#7421)
This commit is contained in:
parent
6c600e3df5
commit
2fffd9d6a1
1 changed files with 28 additions and 0 deletions
28
pages/common/tcsh.md
Normal file
28
pages/common/tcsh.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue