Tagged Questions

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

learn more… | top users | synonyms

27
votes
9answers
48k views

Can a shell script set environment variables of the calling shell?

I'm trying to write a shell script that, when run, will set some environment variables that will stay set in the caller's shell. setenv FOO foo in csh/tcsh, or export FOO=foo in sh/bash only set ...
22
votes
4answers
31k views

generate a core dump in linux

I have a process in linux that's getting a segmentation fault. How can I tell it to generate a core dump when it fails?
14
votes
7answers
1k views

How to determine the current shell i'm working on?

How to determine the current shell i am working on ? Does ps command output will alone do ? How to do this in different flavors of UNIX ?
5
votes
4answers
593 views

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+p feature: Start typing a command and then hit ESC+p (I actually found the equivalent ctrl-[p ...
5
votes
5answers
1k views

Generate a random filename in unix shell

I would like to generate a random filename in unix shell (say tcshell). The filename should consist of random 32 hex letters, e.g.: c7fdfc8f409c548a10a0a89a791417c5 (to which I will add whatever is ...
4
votes
3answers
863 views

Tcsh and/or bash directory completion with variable hidden root prefix

I'm trying to set up directory completion in tcsh and/or bash (both are used at my site) with a slight twist: for a particular command "foo", I'd like to have completion use a custom function to match ...
4
votes
4answers
579 views

Python in tcsh

I don't have much experience with tcsh, but I'm interested in learning. I've been having issues getting Python to see PYTHONPATH. I can echo $PYTHONPATH, and it is correct, but when I start up Python, ...
3
votes
2answers
925 views

How to use for loops in command prompt in csh shell — looking for decent one liners

coming from bash shell, I missed on an easy rolling of loops (for i in (...); do ... done;) Would you post typical one-liners of loops in cshell? ONE LINERS PLEASE, and not multiple-lines thx
2
votes
2answers
80 views

badly placed ()'s when creating oracle database link in tcsh

#my code echo \ 'create database link remotec101 \ connect to "os_user" \ identified by "password" \ using ' \ (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP) \ (HOST=c101) \ (PORT=1521)) \ ...
2
votes
0answers
80 views

Trying to install ruby as system admin [closed]

I am managing a few linux clusters. I am trying to install ruby and some gems for all users, but I'm stuck somehow. Easy version control/switching would be favorable. All users should able to ...
2
votes
2answers
93 views

What do >! and >>! do in tcsh

In normal bash redirection > redirecting standard output to a file, overwriting when it exists and >> redirecting standard output to a file, appending when it exists. In a tcsh (c shell) ...
2
votes
1answer
76 views

set command error in c shell script

I am doing this on my script: set Cnt1 =`echo $Cnt | awk '{print $1}'` set Cnt2 =`echo $Cnt | awk '{print $2}'` set Cnt3 =`echo $Cnt | awk '{print $3}'` I am getting a error saying " set: Variable ...
2
votes
3answers
192 views

Makefile Rules and If Statements — How?

I'm new to Makefiles so please bear with me. I need to modify a Makefile so some rules call different utilities depending on a variable. Right now, a rule looks like: ci: [shell syntax for ...
2
votes
1answer
229 views

How to set an environment variable for just one command in csh/tcsh

In bash, I can set a temporary environment variable for just one command like this: LD_LIBRARY_PATH=/foo/bar myprogram Can I do something similar in csh / tcsh? I could do setenv LD_LIBRARY_PATH ...
2
votes
3answers
199 views

Shell test to see whether a binary is in your path

In csh, tcsh, bash, perl (etc) you can do tests on par with (not necessarily with the same syntax): test -e PATH; # Does PATH exist test -f PATH; # Is PATH a file test -d PATH; # is PATh a directory ...
2
votes
7answers
300 views

troubles while redirecting stderr in csh

I'm writing a Perl script that should execute commands in shell and parse their output. As a shell I'm intended to use csh. I've started with this my $out = `cmd` but it doesn't capture STDERR, ...
2
votes
2answers
644 views

How can I set environmental variables in bash using setenv?

I've a file containing all the environmental variables needed for an application to run in the following format... setenv DISPLAY invest7@xxx.com setenv HOST xxx.com setenv HOSTNAME sk ... How ...
2
votes
5answers
2k views

bash vs csh vs others - which is better for application maintenance? [closed]

Possible Duplicate: What Linux shell should I use? I am starting to get proficient in a Linux environment and i'm trying to pick a weapon of choice in terms of command shell scripting (as ...
2
votes
4answers
114 views

How to do this on the tcsh shell in linux

I want to efficiently do the following on the tcsh in Linux. somecommand a; somecommand b; somecommand c; If I do somecommand {a,b,c}, this does somecommand a b c, which is not what I want. Is ...
2
votes
4answers
606 views

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 the time, but in some cases I want to ignore it. For example: #!/bin/tcsh -vxef cp ...
2
votes
2answers
111 views

Weird Thing Happens in a Simple CShell Program

Hey fellas, I have this weird bug, and I have no clue how to fix it, would be very glad if you could help. #!/bin/tcsh -f set date = ${1} set time = ${2} echo 1 set month = `echo $date | cut -f1 ...
2
votes
5answers
886 views

How do I launch an editor from a shell script?

I would like my tcsh script to launch an editor (e.g., vi, emacs): #!/bin/tcsh vi my_file This starts up vi with my_file but first displays a warning "Vim: Warning: Output is not to a terminal" and ...
2
votes
2answers
1k views

Ctrl-R to search backwards for shell commands in csh

I love this shortcut in borne shell, and want to find out if it is possible to simulate and/or have (perhaps to install an add-on or with a script) it in csh or tsch thanks
2
votes
5answers
2k views

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 in all the files that have the string bar in their name: find -name \*bar\* | xargs gi foo ...
2
votes
2answers
554 views

edit commandline with $EDITOR in tcsh

Today's Daily Vim says this: Assuming you're using the bash shell, the following can be helpful when composing long command lines. Start typing on the command line and then type Ctrl-x ...
2
votes
4answers
4k views

In python 2.4, how can I execute external commands with csh instead of bash?

Without using the new 2.6 subprocess module, how can I get either os.popen or os.system to execute my commands using the tcsh instead of bash? I need to source some scripts which are written in tcsh ...
2
votes
3answers
2k views

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 receive the "Broken Pipe" signal, which usually terminated it aswell. E.g. running $> ...
1
vote
1answer
59 views

Tcsh shell script “syntax error unexpected end of file” for if statement

I saw a similar problem in bash but couldn't solve it for my case. I'm running a simple script: #!/bin/bash set mystring=0 if ( "$mystring" == "0" ) echo "true" elseif echo ...
1
vote
2answers
69 views

Grep a path containing an environment variable and using it

I'm using tcsh, and I'm trying to grep a path from a file with several ID, I'm doing: grep I241149 $ENV_CASTRO/ALL_CMD_LINES.BAK | grep -o \$"ENV_CASTRO.*.asm" that gets me: ...
1
vote
3answers
465 views

SETENV newbie Problem

I am using the tcsh terminal in Linux. In the other terminal I normally used I set the path to some license file as follows: export PATH="$PATH:$MODEL_TECH" Tcsh shell does not recognise this ...
1
vote
1answer
305 views

How to validate numeric input arguments in TCSH script?

How can I validate numeric input arguments to a tcsh script? #!/usr/bin/tcsh if ( $1 < 0.0 ) then echo "ERROR: first input argument is less than zero." exit 1 endif The above snippet ...
1
vote
2answers
199 views

Colored manpages with tcsh?

I really like the colored manpages which can are achieved by export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;31m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' ...
1
vote
1answer
288 views

Make tcsh wait until specific background job ends + alert me

What "nonblocking" command makes tcsh wait until a specific background task completes and then "alerts" me by running a command of my choosing? I want "wait %3 && xmessage job completed ...
1
vote
1answer
166 views

How do I get `__FILE__` when sourcing a csh script

I have a script that is used to set some env vars in the calling csh shell. Some of those variables depend on the location of the script. If the file is a proper csh script, I can use $0 to access ...
1
vote
1answer
92 views

cshell: How do I produce a list of decimal numbers?

I want to produce a list of numbers from 1 to 5 incrementing by 0.25 at each step, like this: 1.0, 1.25, 1.5, ..., 4.5, 4.75, 5.0 Is this possible to do in csh? If so, how do I do it? Thanks for ...
1
vote
1answer
359 views

Generating sequential number lists in tcsh

I've been trying to find a workaround to defining lists of sequential numbers extensively in tcsh, ie. instead of doing: i = ( 1 2 3 4 5 6 8 9 10 ) I would like to do something like this (knowing ...
1
vote
1answer
126 views

How do I see see version of tcsh that is running?

How do I see the current version of tcsh is running in my unix terminal?
1
vote
1answer
232 views

Whats wrong with this C shell script?

I am trying to write a C shell equivalent script for the bash script mentioned here. This is what I have : #! /bin/tcsh set now=`date +%Y%m%d%H%M.%S` if (( ! -f "./cache" ) || (-n "`find ./monme ...
1
vote
2answers
219 views

Tcsh and Bash Initialization

I would like to be able to source a file to set up some environment variables, but do it so it's independent of the shell being used. For example %: source START.env # START.env if [ $SHELL == ...
1
vote
1answer
413 views

Enable History Logging In TCSH Shell

How can I enable logging of all the commands entered in the tcsh shell? I've tried: Setting the $history variable to 100. The $savehist to 99. Set the $histfile to $home/.history Typing ...
1
vote
3answers
140 views

What is “q.v.” in the tcsh man page

Ok, this has been an on-going annoyance, so naturally I thought to bring it here. In the tcsh man page the phrase q.v. is used, and I have no clue why those four characters are inserted. Is it self ...
1
vote
4answers
134 views

Is there a way to make this perl code capture stderr as well as stdout from a tcsh?

open UNIT_TESTER, qq(tcsh -c "gpath $dir/$tsttgt; bin/rununittests"|); while(<UNIT_TESTER>){ reportError($ignore{testabort},$tsttgt,"test problem detected for $tsttgt:$_ ") if ...
1
vote
2answers
226 views

Vim hanging after parsing .vimrc (even a blank one) file on Solaris 10

I am having a problem with vim 7.2 hanging (for about 10 seconds) after it parses the .vimrc file. I had a similar issue in the past with tcsh on linux, but it was resolved by setting TERM to ...
1
vote
1answer
21 views

Selecting records with N fields from a file

can somebody help me, how can I filter my file, inside the file I have rows with 3, 4, 5 elements, I want print using echo only these which have 5 elements, thanks in advance (I'm talkin about ...
1
vote
1answer
35 views

scripts on Cshell

I've got some problem, I have list of data in the file: 053-37878 03828008 Moskovitch James 500 052-34363 01234567 Mendelson Kippi 450 053-32322 03828008 Jameson Shula 350 054-39238 03333333 Merden ...
1
vote
2answers
415 views

How to backup tcsh history periodically to a single file in chronological manner?

I use tcsh at work - one of the features I use extensively is command-line history completion at the shell prompt. Currently, I've limited the size of my history file to 2000 (as I don't want to slow ...
1
vote
3answers
308 views

How to map Delete and End keys on tcsh shell?

I use tcsh , and when Delete/End is pressed on cmd line, it simply shows up as ~ ; I have to press <Ctrl><e> to go to end of line. Can anyone help me to be able to use Delete/End keys as ...
1
vote
1answer
143 views

Shared Libraries in Same Folder with App in TCSH

I am deploying a locally-compiled app to a remote Linux server. Since I don't have root account I cannot put needed shared libraries to /usr/lib Is there a way to overcome this? I put libraries in ...
1
vote
3answers
901 views

How can I hook into tcsh's TAB completion on Linux

I have some directories with a number of "hidden" files. One example of this is I'm in a source controlled sandbox and some of the files have not been checked out yet. When I hit TAB, I'd like the ...
1
vote
5answers
3k views

tcsh: How to change the file extension for multiple files?

Is there a one line command in tcsh to change the extension of a set of files? In the various DOS shells, I used to use the following: ren *.abc *.def This would rename all files ending in .abc to ...

1 2 3