tcsh

C shell with file name completion and command-line editing. See also: csh. More information: <https://manned.org/tcsh>.

Install

All systems
curl cmd.cat/tcsh.sh
Debian Debian
apt-get install tcsh
Ubuntu
apt-get install tcsh
Alpine
apk add tcsh
Arch Arch Linux
pacman -S tcsh
image/svg+xml Kali Linux
apt-get install tcsh
CentOS
yum install tcsh
Fedora
dnf install tcsh
Windows (WSL2)
sudo apt-get update sudo apt-get install tcsh
OS X
brew install tcsh
Raspbian
apt-get install tcsh
Docker
docker run cmd.cat/tcsh tcsh powered by Commando

C shell with file name completion and command-line editing. See also: csh. More information: <https://manned.org/tcsh>.

  • Start an interactive shell session:
    tcsh
  • Start an interactive shell session without loading startup configs:
    tcsh -f
  • Execute specific [c]ommands:
    tcsh -c "echo 'tcsh is executed'"
  • Execute a specific script:
    tcsh path/to/script.tcsh
  • Check a specific script for syntax errors:
    tcsh -n path/to/script.tcsh
  • Execute specific commands from `stdin`:
    echo "echo 'tcsh is executed'" | tcsh

© tl;dr; authors and contributors