
ksh
List of commands for ksh:
-
ksh:tldr:0ac29 ksh: Execute specific [c]ommands.$ ksh -c "${echo 'ksh is executed'}"try on your machineexplain this command
-
ksh:tldr:2fd7c ksh: Start an interactive shell session.$ kshtry on your machineexplain 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 machineexplain this command
-
ksh:tldr:ba279 ksh: Execute a specific script.$ ksh ${path-to-script-ksh}try on your machineexplain 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 machineexplain this command