Top "Tcsh" questions

tcsh is an enhanced but completely compatible version of the Berkeley UNIX C shell, csh.

Check if a string matches a certain pattern in tcsh

I try to match a user-typed string with a specific pattern, to be exact i want to check if the …

tcsh
How can I use aliased commands with xargs?

I have the following alias in my .aliases: alias gi grep -i and I want to look for foo case-insensitively …

linux tcsh xargs
Bash's equivalent of Tcsh's ESC-p to jump to command starting with what you typed so far

I recently made the insanely long overdue switch from tcsh to bash. The only thing I miss is tcsh's ESC+…

bash shell keyboard-shortcuts tcsh
multi-line variable in tcsh

I want to have variable in tcsh to hold the usage info of my script, so in my script, whenever …

csh tcsh
check if file does not exist or is older than another in csh

in C-shell I need to check if a file exists or if it is older than another file (or in …

shell logical-operators csh tcsh
redirect STDERR in tcsh from .aliases

in tcsh I'm trying to redirect STDERR from a command from my .aliases file. I found that I can redirect …

tcsh
Broken pipe no longer ends programs?

When you pipe two process and kill the one at the "output" of the pipe, the first process used to …

linux shell tcsh broken-pipe
How to run a tcsh shell command and selectively ignore the status?

I've got a tcsh shell script that I would like to stop with an error on nonzero status most of …

unix shell csh tcsh