
tcsh
List of commands for tcsh:
-
tcsh:tldr:35fe4 tcsh: Execute specific [c]ommands.$ tcsh -c "${echo 'tcsh is executed'}"try on your machineexplain this command
-
tcsh:tldr:3c0f9 tcsh: Check a specific script for syntax errors.$ tcsh -n ${path-to-script-tcsh}try on your machineexplain this command
-
tcsh:tldr:60dcd tcsh: Start an interactive shell session.$ tcshtry on your machineexplain this command
-
tcsh:tldr:78f28 tcsh: Execute a specific script.$ tcsh ${path-to-script-tcsh}try on your machineexplain this command
-
tcsh:tldr:97b46 tcsh: Start an interactive shell session without loading startup configs.$ tcsh -ftry on your machineexplain this command
-
tcsh:tldr:c0e93 tcsh: Execute specific commands from `stdin`.$ ${echo "echo 'tcsh is executed'"} | tcshtry on your machineexplain this command