1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 04:26:01 +02:00

ksh: refresh page (#7982)

* Refresh a page:
- better grammar
- better token syntax

* Add reading commands from stdin sample

* Make page consistent with `zsh` page

* `See also` links simplified
This commit is contained in:
Emily Grace Seville 2023-01-08 01:24:57 +10:00 committed by GitHub
parent 69cce4fdf8
commit a5816f02eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,25 @@
# ksh
> Korn Shell, a Bash-compatible command-line interpreter.
> See also `histexpand` for history expansion.
> See also: `histexpand`.
> More information: <http://kornshell.com>.
- Start an interactive shell session:
`ksh`
- Execute a command and then exit:
- Execute specific [c]ommands:
`ksh -c "{{command}}"`
`ksh -c "{{echo 'ksh is executed'}}"`
- Execute a script:
- Execute a specific script:
`ksh {{path/to/script.ksh}}`
- Execute a script, printing each command before executing it:
- Check a specific script for syntax errors without executing it:
`ksh -n {{path/to/script.ksh}}`
- Execute a specific script, printing each command in the script before executing it:
`ksh -x {{path/to/script.ksh}}`