1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

csh: refresh page (#7986)

This commit is contained in:
Emily Grace Seville 2022-06-05 15:15:56 +10:00 committed by GitHub
parent 7e46b4a268
commit 9fad185656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
# csh # csh
> The shell (command interpreter) with C-like syntax. > The shell (command interpreter) with C-like syntax.
> See also: `tcsh`.
> More information: <https://www.mkssoftware.com/docs/man1/csh.1.asp>. > More information: <https://www.mkssoftware.com/docs/man1/csh.1.asp>.
- Start an interactive shell session: - Start an interactive shell session:
@ -11,10 +12,10 @@
`csh -f` `csh -f`
- Execute a [c]ommand: - Execute specific [c]ommands:
`csh -c "{{command}}"` `csh -c "{{echo 'csh is executed'}}"`
- Execute a script: - Execute a specific script:
`csh {{path/to/script.csh}}` `csh {{path/to/script.csh}}`