Forrest logo
back to context overview

tcsh

List of commands for tcsh:

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