Tagged Questions

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

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 ...
25
votes
8answers
23k views

Getting ssh to execute a command in the background on target machine

This is a follow-on question to the How do you use ssh in a shell script? question. If I want to execute a command on the remote machine that runs in the background on that machine, how do I get the ...
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 ?
11
votes
5answers
3k views

How do I get diffs of all the files in a pending Perforce changelist?

I want to get diffs on files in a specific pending changelist. I wish I could do this: p4 diff -c 999 Can someone help me string together some csh magic to make this happen? Maybe take the output ...
10
votes
2answers
526 views

Explain the deviousness of the Perl “preamble”

The Perl manual describes a totally devious construct that will work under any of csh, sh, or Perl, such as the following: eval '(exit $?0)' && eval 'exec perl -wS $0 ${1+"$@"}' & ...
9
votes
3answers
400 views

In csh, why does 4 - 3 + 1 == 0?

#!/bin/csh @ cows = 4 - 3 + 1 echo $cows This simple csh script when run produces "0" for output when I'd expect "2". ~root: csh simple.1 0 I did a bunch of looking and the only thing I could ...
8
votes
8answers
1k views

Output of last shell command

In a linux shell, is it possible to return the output of the last command. I realize I could have piped it or sent the output to a file, but my requirement is to retrieve that output after the ...
7
votes
8answers
5k views

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

We have Oracle running on Solaris, and the shell is by default csh. So the login script sets the oracle_home, oracle_sid in csh also. But I don't like csh and want to use bash to do my work. So how to ...
7
votes
3answers
797 views

Surprise! the shell suggests command line switches

I noticed that the bash shell can suggest command line switches for your command. Just type your command, a dash (-) and type tab. The shell will show you available switches. For example, try: ...
6
votes
6answers
3k views

How to use parallel execution in a shell script?

I have a C shell script that does something like this: #!/bin/csh gcc example.c -o ex gcc combine.c -o combine ex file1 r1 <-- 1 ex file2 r2 <-- 2 ex file3 r3 <-- 3 #... many ...
5
votes
3answers
3k views

Why do unix background processes sometimes die when I exit my shell?

I wanted to know why i am seeing a different behaviour in the background process in Bash shell Case 1: Logged in to Unix server using Putty(SSH) By default it uses csh shell I changed to bash shell ...
4
votes
3answers
320 views

How can I read one line at a time with C shell in unix

I try to make a small script, using c shell, that will take a file made of several lines, each containing a name and a number and sum all numbers that a have certain name. How can I put into a ...
4
votes
7answers
2k views

Make python enter password when running a csh script

I'm writing a python script that executes a csh script in Solaris 10. The csh script prompts the user for the root password (which I know) but I'm not sure how to make the python script answer the ...
3
votes
4answers
89 views

Checking in bash and csh if a command is builtin

How can I check in bash and csh if commands are builtin? Is there a method compatible with most shells?
3
votes
2answers
114 views

`watch jobs` doesn't work in linux

I want to use watch jobs to see an updated showing of all the jobs I have running, but when I try to do it, all I get is the headline of watch and a blank screen. But using the script while (1) ...
3
votes
3answers
276 views

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 large stack, so the csh script sets the stacksize to unlimited: limit stacksize ...
3
votes
3answers
190 views

Is there a linux command to block until a process exits?

It's just what the question asks. Also, all I have is the PID, and the shell I am running the command from is not necessarily the shell that initially invoked the process. Any ideas?
3
votes
7answers
768 views

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 the specific case of a csh script I have that batch runs a bunch of different build ...
3
votes
1answer
191 views

How do I escape a field variable in an awk command in an alias?

Here are the contents of a file: one two three four five six And here is my alias alias testawk "awk '{print $2}' file" This is what I get: > testawk one two three four five six But when I ...
3
votes
1answer
854 views

csh idioms to check for environment variable existence?

I've got a few csh scripts where I need to check that certain environment variables are set before I start doing stuff, so I do this sort of thing: if ! $?STATE then echo "Need to set STATE" ...
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
3
votes
9answers
3k views

How to keep from duplicating path variable in csh

It is typical to have something like this in your cshrc file for setting the path: set path = ( . $otherpath $path ) but, the path gets duplicated when you source your cshrc file multiple times, ...
2
votes
1answer
34 views

Code that is a no-op in bash but stops with an error message in csh?

I am working with someone on a data analysis project and we frequently document the steps we perform by putting them into small shell scripts. The problem is that I use bash and the other person uses ...
2
votes
2answers
71 views

csh stdin to Python stdin?

How do you redirect the stdin of a csh script to the stdin of a python script? I have a cgi script I'm writing in csh that runs on a Solaris machine. This csh script is a wrapper to a python script ...
2
votes
3answers
133 views

Problem with reading in parameters with special characters in Python

I have a scripts (a.py) reads in 2 parameters like this:- #!/usr/bin/env python import sys username = sys.argv[1] password = sys.argv[2] Problem is, when I call the script with some special ...
2
votes
1answer
90 views

putting quotation marks in `alias` is `CSH`

I want to have an alias that will execute the fallowing command: zgrep 'failed at' $PWD/RESULTS/log_dir/* | cut -d"'" -f2,4 | tr "'" "\t" I've tried different ways to put it to an alias but none of ...
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
3k views

MVC 3 Razor @Html.ValidationMessageFor not working in partial loaded via jquery.load()

I have put together a small example here just to replicate the problem. I have a strongly typed partial view _Name.cshtml: @model ValidationInPartial.ViewModels.MyViewModel ...
2
votes
4answers
253 views

How to add date string to each line of a continuously written log file

Having a long running program that continuously writes to a logfile - how is it possible, disregarding any buffering issues, to add a date string to each line written to that file using a linux ...
2
votes
4answers
343 views

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 or csh. I want something like: for($i=11; $i<=24; $i++) { exec(tar xzf 'myfile-1.0.' . $i); ...
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
299 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
1answer
239 views

Matlab-like command history completion in csh

My question is how to get command line completion of commands stored in the history in csh, writing the start of the command and using up/down arrows to move through the list, in a similar way as done ...
2
votes
1answer
253 views

How do I convert csh aliases into MODULEFILE compatible set-alias commands?

I have a bunch of aliases that I would like to share with co-workers and I would like to put it in our project modulefile. Is there a script that would do the conversion for me? Or at least give me a ...
2
votes
4answers
192 views

Why doesnt rm doesnt work as I expect here?

I just want to do a simple thing. I got the following files in a directory: AppInterface.h baa PEMsg.h PluginInterface.h Then I issue the command: ls | grep -v ".h" | rm -rf Much to my ...
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
1answer
175 views

Failing if diff is found (c-shell)

Please resist the urge to tell me not to use c-shell. I'm writing a c-shell script and I need to run a diff between two files (generated in the script). How do I run diff and return its status (if it ...
2
votes
2answers
869 views

Multiple wordlists in csh script foreach loop

I have a Cshell script that I am modifying to have related input and output locations. the functionality all happens in a foreach loop like so: set INPUT_LOCATION_LIST = "loc1 loc2 loc3 loc4" ...
2
votes
2answers
289 views

Csh alias with perl one-liner evaluates when alias is created and not when alias is used

I know, I know, I should use a modern shell... Anyway, so here is the alias: alias p4client echo `p4 info | perl -ne 's/Client name: (.*)$/print $1/e'` I also know there is probably a better way ...
2
votes
2answers
444 views

Overcoming os.system() limitation in Python 2.3

I am having a problem converting one of my company's scripts from csh to Python. The csh script calls an aliased command, but when I call that same aliased command via os.system(), it does not work. ...
2
votes
4answers
605 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
373 views

in c shell, how to open a file that contains a single digit

I need to open a file using c shell. The file contains a single integer, and I need to put it into a variable, increase it and put back into the file. Meaning, if the file contains the number 5, I ...
2
votes
2answers
44 views

What are the syntax changes from the shell script to the cshell script?

I just came to know that .sh files don't use set and spaces around = are not allowed, while this is allowed in a .csh file. Is there some place that you can point me to where I can find all these ...
2
votes
2answers
167 views

ampersand at beginning of a line in csh

What does an ampersand at the beginning of a line do in csh? It seems to be ignored (with no error message), but why?
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
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
6answers
3k views

How do you use newgrp in a script then stay in that group when the script exits

I am running a script on a solaris Box. specifically SunOS 5.7. I am not root. I am trying to execute a script similar to the following: newgrp thegroup << FOO source ...
1
vote
0answers
22 views

How can I get csh to source a file and then go interactive?

BRIEF how do I (1) start a new csh, (2) force it to execute a few commands that are NOT in any .cshrc (although I could arrange for them to be in a non-standard location to be source'ed) and (3) then ...
1
vote
2answers
35 views

Not able to set LD_LIBRARY_PATH for Java process

I am trying to call my linux executable from shell script. Before calling this executable, I want to set LD_LIBRARY_PATH with specific values. My shell script is as below: Parent.sh (contains 2 ...

1 2 3 4