Forrest logo
back to context overview

ksh

List of commands for ksh:

  • ksh:tldr:0ac29 ksh: Execute specific [c]ommands.
    $ ksh -c "${echo 'ksh is executed'}"
    try on your machine
    explain this command
  • ksh:tldr:2fd7c ksh: Start an interactive shell session.
    $ ksh
    try on your machine
    explain this command
  • ksh:tldr:366d2 ksh: Check a specific script for syntax errors without executing it.
    $ ksh -n ${path-to-script-ksh}
    try on your machine
    explain this command
  • ksh:tldr:ba279 ksh: Execute a specific script.
    $ ksh ${path-to-script-ksh}
    try on your machine
    explain this command
  • ksh:tldr:e7eb4 ksh: Execute a specific script, printing each command in the script before executing it.
    $ ksh -x ${path-to-script-ksh}
    try on your machine
    explain this command
back to context overview