Top "Csh" questions

csh, or the C shell, is a command interpreter with a syntax reminiscent of the C programming language.

how to source a csh script in bash to set the environment

We have Oracle running on Solaris, and the shell is by default csh. So the login script sets the oracle_…

bash csh
csh/sh for loop - how to?

i'm trying to write a for loop that executes 2 scripts on FreeBSD. I don't care if it's written in sh …

bash shell sh csh
how to perform a basic arithmetics from unix csh/tcsh shell

Under windows, when I need to perform a basic calculations, I use a built-in calculator. Now I would like to …

linux shell unix csh tcsh
how to check existence of any file in csh script?

For checking the existence of any file in csh script I am using if [ -f /var/opt/temip/conf/.temip_…

linux csh
Display only files and folders that are symbolic links in tcsh or bash

Basically I want do the following: ls -l[+someflags] (or by some other means) that will only display files that …

linux shell csh tcsh
Edit shell script while it's running

Can you edit a shell script while it's running and have the changes affect the running script? I'm curious about …

linux shell csh
Declaring User Defined Variable in Shell Scripting (csh shell)

I am trying to learn shell scripting and trying to create a user defined variable within the script, first: howdy="…

linux shell csh
Setting stacksize in a python script

I am converting a csh script to a python script. The script calls a memory-intensive executable which requires a very …

python stack csh
How to run a csh script from a sh script

I was wondering if there is a way to source a csh script from a sh script. Below is an …

linux bash shell csh
How do I split a String in CSH?

For example, I want to split "one,two,three" with comma as delimiter and use a loop to process the …

csh