csh, the C shell, is a command interpreter with a syntax reminiscent of the C language.
0
votes
3answers
60 views
weird behaviour of If statement in (t)csh
I have an if loop that's not quite doing what it's supposed to.
I want the if loop to look for a particular file "if (-f JUN*[0-9].acc$RUN.nc)" and if it finds it, continue doing the indented things. ...
0
votes
1answer
20 views
Determine module load status
I have one script which determine the module load status.
In the following code Line 4, it give me error that it can not load specific version than after I have check the status. Ideally I should get ...
-1
votes
0answers
19 views
How to start a couple of cshell scripts?
I have to write the following C Shell scripts (I know, C Shell is bad), and I really don't even know how to start so I was wondering if I could get a push in the right direction. I assume they both ...
1
vote
1answer
30 views
setting PATH in .cshrc has no effect
In my .cshrc there are two lines:
setenv PATH /a/bin:$PATH
cd /a/
The result of
setenv
is
...
PATH=/a/bin:<original PATH>
...
The result of
ls -l /a/bin
is
-rwxr-x--x 1 evgeny ...
0
votes
1answer
26 views
A newly defined alias within another alias, the first excution will fail
If we define and use an alias B within another alias A, the first time execution of A will fail. For example,
alias A='alias B="which ls"; B;'
The first time excution would look like (in bash)
...
3
votes
2answers
36 views
Substitution of ! with sed leads to event not found
I need to change every occurrence of ! to : as field separators in a group file.
sed 's/!/:/g' filename > newfilename
But I get the error /: Event not found?
0
votes
1answer
15 views
finding real life names and csh login shell
When I awk the etc/passwd file for real life names how do I single out the csh shell logins:
awk -F":" ' {print $5} /etc/passwd
I need to find the users that have the csh login shell
2
votes
1answer
24 views
csh one liner to compare 2 zipped text files
I'm trying to compare 2 .gz text files using zcat and diff. This is on a JunOS box, so adding new binaries (zdiff) is not an option and only a limited number of other shells are available. It may be ...
0
votes
3answers
22 views
Script variables in C-shell
There is a my_grep script
#!/bin/csh
cat $1 | grep -i -E " a | b "
How come
cat a* | grep -i -E " a | b " > out1.txt
and
my_grep a* > out2.txt
yield different results?
0
votes
0answers
19 views
How to load a building environment from file on Eclipse
I work on various Fortran projects using Eclipse (Juno Service Release 1) and Photran, under Debian 5.
These projects are built by the following commands:
csh /* We work on ...
1
vote
2answers
41 views
How to return status from an rsh command using csh via perl
I have a perl script that runs a command via rsh and I need to get the exit status of that command on the remote server. The shell on both the local and remote servers is csh (I can't change this). ...
2
votes
1answer
35 views
alias in cshell with grave accents, apostrophes and more
I came across a weird behavior in the c-shell:
when writing the following line, i get exactly the behavior I expect:
ls -l | grep $USER | somescript `awk -F' ' '{print $1}'`
meaning - it will ...
0
votes
0answers
21 views
How to take case insesitive input in c shell?
I need to get a response from the user, yes or no, and then if the answer is any variation of yes (Yes, yEs... etc) delete a file.
I attempted
echo "Are you sure ( yes or no ) ?: "
set response = ...
0
votes
3answers
62 views
how to get the last login time for all users in one line for different shells
I can make the following line work on ksh
for user in $( awk -F: '{ print $1}' /etc/passwd); do last $user | head -1 ; done | tr -s "\n" |sort
But I'd like to make it work on UNIX sh and UNIX csh. ...
0
votes
1answer
32 views
AWK invoking sh instead of csh
I'm sure there is a much easier way to do this, so I'm all ears.
sort -nrk 7 my_list.tsv | tail -n 1 | awk '{print("setenv INPUT_DIR `pwd`/"$1)}'
The first item in my .tsv are filenames (sorted) ...
1
vote
1answer
43 views
add “&” before redirect command
now, I have a script using redirect command.
set filename1='/home/1.log'
echo "hello " >>& ${filename1}
Question:
I know "&" is added before file handler, but here, "filename1" is ...
0
votes
0answers
82 views
Linux environment variables not the same as when we access them from JSch script
The enviroment variable $PATH is not the same as when we directly echo it from the linux prompt and when we try to echo it from the JSch session as below.
static String executeCommand(Session ...
0
votes
1answer
65 views
How to read the first (and only) line of a file, split it into separate strings and append it to variables using csh?
I need some help with the following problem. I just can't figure it out (and yes I did the googlework etc).
Using csh I need to read one line from a file (there is only 1 line in the file), split it ...
0
votes
0answers
32 views
How to exit calling script in csh?
I have a csh script (a.csh) which calls another (./b.csh). How do I exit from a.csh if some condition is not satisfied while running b.csh?
Here is how I call b.csh
b.csh >&! b.csh.log
...
0
votes
1answer
45 views
How to expand variable literally when calling perl from csh script?
Below is a csh script.
#! /bin/csh
set alpha=10\20\30;
set beta = $alpha.alpha;
perl -p -i.bak -e 's/gamma/'$beta'/' tmp;
The tmp file contains just the word gamma. After running tmp.csh, I expect ...
0
votes
3answers
71 views
unix & gnu/linux distributions: possible locations for 'which' command?
Would like to reference the full path to the which command as an improvement to some shell scripts. Is anyone aware of a standard location for some unix gnu/linux distribution BESIDES /usr/bin/which?
1
vote
2answers
64 views
Why is the variable getting replaced with previous command in perl?
I'm trying to replace only the first occurrence of a pattern in a file using a perl one liner.
>touch tmp
>perl -p -i.bak -e '++$seen if( !$seen && s/alpha/beta/);' tmp
After this I ...
1
vote
1answer
22 views
How to allow variables to be used in a csh script called from another csh script?
I have a script caller.csh in which I call another one called.sh. I declare some variables using set command in caller.csh (e.g. set alpha = 10). How do I use them in called.sh (e.g. echo $alpha) ...
0
votes
5answers
89 views
How to check what shell is running?
I need to check if the script is running from bash or csh.
#!/bin/csh
if ( `echo $SHELL` != '/bin/tcsh' )
echo 'Please run it in csh'
exit
endif
This code is giving
bash: g.csh: line 7: ...
0
votes
0answers
26 views
How to let the xterm have a totally clear setting? [closed]
I have a csh script which would maily do:
1 . xterm -e "xxxx"
2 . xterm -e "xxxx"
But I found in the second xterm windos, all the settings made in the 1st xterm are still there. For example, there ...
0
votes
3answers
84 views
csh shell: Numerical operations with variable from file
I am currently writing a csh shell skript and want to compare numbers that are stored in a file. There is only one number stored in this file e.g. -3.675000e+05 or 0.000000e+00
The problem is, that I ...
0
votes
1answer
122 views
Switch statement in csh
I am trying to make a switch statement to work in tcsh but I am not sure why it is not working. I am displaying a menu on the screen and if the option is selected it shows the price and then goes back ...
0
votes
1answer
30 views
Checking the value in the argument passed to a function
When i try to log the argument i get the right value . How do i compare if an argument is a particular string in csh script. And what is the corresponding code in bash.
checkstatus()
{
/bin/echo ...
4
votes
3answers
84 views
Linux - How can I copy files of the same extension located in several subdirectories into a single directly?
I have a folder which has many subdirectories, each with a *.nr file in them. There are 1000 subdirectories, each containing at least one *.nr file. Is there a quick way to copy all those *.nr files ...
0
votes
0answers
34 views
Executing an alias before calling a shell
I have a script which does a bunch of things and then invokes csh at the end to leave the user inside a new shell.
The problem for me is that, I do not have any of the alias' set inside my script ...
0
votes
1answer
68 views
Quoting a string for csh
For the purposes of this question, by "csh", I mean tcsh.
I am aware of the standard advice to avoid csh for programming. However, sometimes ones needs to interact with existing csh code, and then it ...
2
votes
1answer
63 views
Use C shell alias variables except for one
I would like to make an alias that uses the first cli variable as an input to something and puts the rest of the variables in the end, like for example:
alias rerun '`head -n 2 \!:1/some_log_file.log ...
0
votes
1answer
84 views
How to find subdirectory of some directory, which have most files
I have already done it using bash, but how can i get name or path to this subdirectory using tcsh. Later i need to count total size of all files in this subdirectory, please help me.
For example:
...
0
votes
4answers
77 views
How to get numeric value from a string in csh
I am writing a csh script and need to assign the numerical value in a string to a variable
Here is an example of the string value: "pkt_size=78"
The characters in the string will always be the same ...
0
votes
1answer
42 views
How to join variables in csh script
I am trying to concatenate two variables in a csh script
Here is part of the script
#!/bin/csh -f
set encname = _11111k_1920x1080_x264_5200_quicktime_128.mp4
set lowerisrc = `echo $isrc | tr ...
0
votes
1answer
28 views
Converting from switch-case to if-then statement
I am trying validate input using cshell but am having trouble with the exact syntax. I know what you can use switch case structures like so:
switch ( $input )
case [0-9]:
echo Input is good
...
0
votes
0answers
54 views
csh script syntax
I am new to csh script this is the first time i am writing any script:
Here is code:
#!/bin/csh
#arg1 path
#arg2 condition
#arg3 number of files
#arg4-argN name of files
set i=0
while ( $i ...
1
vote
1answer
137 views
csh error “set: No match.”
So I am writing a calculator c shell script that reads numbers in from a file, and the shell returns the answer. For example, in the numbers text file, I would have:
1129 3100 +
and my csh file, ...
0
votes
1answer
73 views
Read user input (which should be a linux command) and execute
I wish to write a simple csh script which loops through all computers in a network and executes a command that is input at the command line
echo -n "Please enter command you would like executed on ...
0
votes
2answers
117 views
inputrc file cannot be loaded [closed]
Guys I just figured out we can create a ~/.inputrc file to define keyboard mappings. But I don't know how to load it. I tried to source it but i get a 'set Syntax Error' immediately. I copied the ...
3
votes
2answers
89 views
Entering cshell from bash
I have a bash script and need to run some commands in cshell inside it.
#!/bin/bash
echo entering_to_cshell
csh
echo in_cshell
exit
echo exited_from_cshell
Why doesn't this script run as expected? ...
0
votes
3answers
79 views
Translating csh switch to perl
I am currently translating some scripts from csh to perl. I have come across one script which has the following switch control
#And now some control
set get_command = h
set finish = 0
while (1)
...
1
vote
1answer
108 views
from csh to bash and re-source the same file
I have a bash file that needs to get sourced. Users might have a csh without knowing (default configuration) so I wanted to change the shell to bash but sourced the file as that was the user's ...
0
votes
1answer
89 views
GNU parallel with two arguments
I have a C-shell script with a variable called $hosts_string of the form:
host1,host2,...,hostN
I also have a variable called $chrs_string of the form:
chr1,chr2,...,chrM
I also have a variable ...
0
votes
1answer
57 views
Finding regular expression in list of files
I have several header files in a directory with the format imageN.hd where N is some integer. Only one of these header files contains the text 'trans'. What I am trying to do is find which image ...
0
votes
1answer
24 views
Using the csh tail by exception
Please can you help me, I am trying to strip some data from the end of a file, say file.oot.
I would like to use tail command, returning everything except the last n lines. I would like to limit ...
0
votes
1answer
42 views
Tracing how my path is being set
Is there a way (in UNIX) to trace how my $PATH is set?
I have an entry in my path that I don't want, but I just can't find the source to remove it for good. I am running Solaris 10 and CSH.
1
vote
1answer
72 views
linux print to STDOUT and redirect to a file using single command
Is there a way to both echo the output of a command to the terminal and redirect to a file using a single file rather than using 2 separate commands in csh (for historical reasons i must use csh for ...
2
votes
2answers
246 views
passing command line arguments to a shell script doesn't work
I want to write a script that will change to different directories depending on my input. something like this:
test.sh:
#!/bin/bash
ssh machine001 '(chdir ~/dev$1; pwd)'
But as I run ./test.sh 2 it ...
0
votes
1answer
32 views
tcshrc setting path getting error
im trying to set the environment path to run pintos command like this in my home floder under ubuntu
set path = ($path /home/pintos/src/utils)
and I type terminal command try to compile this
:~$ ...

