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
pull/3/head
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
1 changed files with 9 additions and 5 deletions

View File

@ -1,21 +1,25 @@
# ksh # ksh
> Korn Shell, a Bash-compatible command-line interpreter. > Korn Shell, a Bash-compatible command-line interpreter.
> See also `histexpand` for history expansion. > See also: `histexpand`.
> More information: <http://kornshell.com>. > More information: <http://kornshell.com>.
- Start an interactive shell session: - Start an interactive shell session:
`ksh` `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}}` `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}}` `ksh -x {{path/to/script.ksh}}`