Location: Saint Paul, MN USA / BSD, CentOS, Debian, OS X, Solaris
Posts: 2,288
Thanks Given: 430
Thanked 480 Times in 395 Posts
Hi.
Quote:
Originally Posted by gopishrine
Is there any pdf document to learn about c shell scripting? And one more thing is there any way to open the text document using shell scripting?
I am with MadeInGermany and others in trying to discourage use of csh/tcsh for scripting.
However, if you must use it, see the (old) references below. Search on Google, at publisher websites for possible PDFs, and at Amazon, the latter of which may have new copies of the books, but I'd try for a used copy there as well.
Is it possible to define the size of the array instead of directly giving the input?
Like x is the array variable and it has the size of 10. So that I could pass the input.
You could try this:
However with my csh (tchs 6.22.01) using $arr:q to print array elements with quotes around them fails to print array elements that are blank. I had to append a single space instead.
Not quite sure what you mean by input as an array value. It's fairly straight forward to pre-load an array with fixed values or copy an existing array into another:
I mean, the array size should automatically increase. ie., consider the array size as 5 initially, then if the input is in size of 10 data(1,2,3,4,5,6,7,8,9,10), then the array size should increase from 5 to 10.
This is the sample json I have pasted here. I want all the IP address strings to be converted into an array. For example "10.38.32.202" has to be converted to everywhere in the JSON. There are multiple IPs in a JSON I am pasting one sample object from the JSON. But the IPs already in an Array... (11 Replies)
Hi there,
im a beginner to the shell scripting.i trying to extract a table from a db(IMD) and i have to get the count of that table and size of the file.
can you help me out how to write the shall scriping for the above query. (2 Replies)
hi
My script as below
#!/bin/ksh
for i in `seq 1 7`
do
a=$(awk '{print $i}' /home/rama/expenese.txt)
done
for i in `seq 1 7`
do
echo "${a}"
done
content of expense.txt is as below
5032 210179 3110 132813874 53488966 11459221 5300794
I want output as... (6 Replies)
Hi,
I am having two set of files with different number of columns and rows.
A set of files have only single row with 20 columns.
B set of files have 1000s of rows with 5 columns.
both set contains equal number of files.
I want to save all the 20 columns of A in variables one by one and... (21 Replies)
Hello all,
I need to do scripts total up the size in selected extension file for example motion.mov and segmentation.avi is in Label Media. For file info.doc and calc.xls in Label Document.
I need output will be like this:
count 1
Media,,2 GB
count 2
Document,,4 GB
My problem is,... (16 Replies)
i have to store a data more than 100000.
i don't know the size of the data whether it may be 100000 or 1000000.
so how can i define variable size;
example
char abc;
but i don't know the size so how can i give array size??
in one sentence
how can i give the array size dynamically so that i... (6 Replies)