0
votes
1answer
24 views
Remove symbol in shell
I'm new to shell scripting, right now using csh and let's say I have a line in my configuration file like this:
127.0.0.1:2222 127.0.0.2:3333 127.0.0.3:4444
All I want is to par …
1
vote
7answers
766 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 …
0
votes
1answer
26 views
evaluating environment variable from file in csh
I have a config file that contains the following line:
pre_args='$REGION','xyz',3
Using perl from within a csh script I can evaluate environment variable $REGION like so:
set p …
1
vote
1answer
44 views
How to set mutiple words variable from command line input in C shell
I'm writing a script to search for a pattern in file. For example
scriptname pattern file1 file2 filenN
I use for loop to loop through arguments argv, and it does the job if all …
0
votes
3answers
49 views
How to egrep variable-Unix shell script
I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):
echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
echo "Inva …
0
votes
1answer
62 views
Script to count words matching pattern C shell
I wrote this script which counts occurrences of particular pattern in a given file. However if text file contains square brackets or curly braces shell outputs a message "Missing } …
0
votes
2answers
16 views
CShell word replacement
Hey,
I have a short text file with the following syntax:
FileName: some name
Version: 3
Length: 45
hello, this is an irrelevant, unimportant text.
So is this line.
Now, I'm tryi …
0
votes
2answers
89 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 multi …
0
votes
2answers
34 views
csh list of commands like ksh { list; }
Hi,
In bourne-compatible shells, the { list; } syntax causes the complete list of commands to be read by the shell before executing it, without opening a new shell. Is there anyth …
0
votes
5answers
207 views
How can I make the list of letters from A to Z and iterate through them in the shell?
Say I want to iterate from letter A to letter Z in csh shell. How do I succinctly do that?
In bash I would do something like
for i in 'A B C ...Z'; do echo $i; done
The point …
0
votes
9answers
277 views
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 find out what is the common way if you only have a shell.
Thanks
0
votes
3answers
199 views
extract filename from path in csh shell — from list of files
How to extract filename from the path; i have a list of files. I'm using csh shell, and have awk, sed, perl installed.
/dfgfd/dfgdfg/filename
should give me
filename
I tried …
0
votes
2answers
46 views
How do you manage/store/arrange your alias in *nix?
I have a million of alias stored in my .cshrs file. I wonder if it is preferred way or people use other files to do it and then loaded into the environment.
How do you do it?
0
votes
3answers
134 views
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 are symbolic links
so the output would look
-rw-r--r-- 1 userna …
0
votes
2answers
161 views
How to execute .csh script with command line arguments from .csh script
So I have .csh script generate.csh
I want to call another .csh script from within it.
I tried
./shell_gen.csh test1 test2.prt
But it runs shell_gen.csh but without command line …
