Thanks, I had never come across dot operator before.
It is available in c shell?
---------- Post updated at 12:45 PM ---------- Previous update was at 11:47 AM ----------
@itkamaraj
It seems dot operator is not available in csh or tcsh . My work is on either of both shell. can you suggest some csh/tcsh equivalent.
the problem i am facing is..i cant generate and use the variables as i wish to.
My objective is explained below:
Consider I have a simple text file as below
file1
The file's content (with fixed format as above) can be added by any user.
I need to write a script to automatically generate and use following variables
s1,a1,s2,a2,b2,s3,a3,b3,c4,...
The variables list will depend on entries of file1.
filename: nscript
in command prompt when i type
i get following output
but when i type
I get following output
since i am new to unix, am not able to understand why I am getting such error.
I googled and came across a pdf telling dot operator is not supported in csh/tcsh.
The problem, i think is that we have a code which is interpreted ok with bash, but not in csh.
---------- Post updated at 01:46 PM ---------- Previous update was at 01:37 PM ----------
also if i run the nscript with following changes
i get the following results ---------- Post updated at 01:55 PM ---------- Previous update was at 01:46 PM ----------
I have a variable and assigned the following values
***XYZ_201519_20150929140642_20150929140644_211_0_0_211
I need to read this variable from backward and stop read when I get first underscore (_)
In this scenario I should get 211
Thanks
Kris (3 Replies)
We have been provided a .dump file.The need is to extract the contents(may includes files and folder).
ls -lZ didnt help me as Z is not a valid option.
How to extract the file contents ? (7 Replies)
Hi Guru's,
I am new to shell scripting. I have a unique requirement:
The system generates a single pdf(/tmp/ABC.pdf) file with Invoices for Multiple Customers, the format is something like this:
Page1 >> Customer 1 >>Invoice1 + invoice 2 >> Page1 end
Page2 >> Customer 2 >>Invoice 3 + Invoice 4... (3 Replies)
I have an input file with contents like:
./prbru6/12030613.LOG:24514|APPL|prbru6.8269.RTUDaemon.1|?|13:49:56|12/03/06|GMT+3|?|RTUServer Error:Count of Internal Error Qty (-1) < 0, for Audit group id - 1L5XVJ6DQE36AXL, after record number,1, File: EventAuditor.cc, Line: 394|? ... (5 Replies)
I'm using Mail::Internet module, which will basically filter through email content and extract the body of the message
my perl script to extract the body of the email
#!/usr/bin/perl -w
use Mail::Internet;
@lines = <STDIN>;
$mi_obj = new Mail::Internet();
... (2 Replies)
By using a csh, I want to address a variable content whose name is/matches the content of a given other variable.
i.e.
set name=´sam´
set ${name}_age=´27´
So, by typing: echo ${name}_age
I correctly obtain: sam_age
By typing: echo $sam_age
or echo ${sam_age}
I correctly obtain: 27
... (1 Reply)
Hi Everyone,
I have a file with the below content:
File1.txt
======
###
###==> the below table was created for testing1 purpose;
###
create table 123
(
field1 date,
field2 char(10)
primary key(field1)
);
###
###==> the below table was created... (5 Replies)
please help for the following task...
I have to extract the mac address & IP address from the file1:
...
0100004512EEF4 03 192.168.0.7 192.168.0.1 -1 ...
0100779hF5D212 03 192.168.0.8 192.168.0.1 -1 ...
0100789lF5D212 03 192.168.0.9 192.168.0.1 -1 ...
...
change the format (addidng... (15 Replies)