perl newbie . &&..programming newbie


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting perl newbie . &&..programming newbie
# 8  
Old 04-24-2009
Hi ghostDog,

Yeah I have finally got it working now...

But i still need to do one final thing

i.e. changing the back slash to front slash as i am using windows ..

you have been a great help

thanks
xytiz
# 9  
Old 04-25-2009
Windows should handle forward and backslashes. But if you really need to change all the back to forward:

$var =~ tr#\#/#;
# 10  
Old 04-29-2009
Hi Everyone,

Thank you very much for the timely help..

I now have one more task :

Is there a way to run the perl script > then Excel macro > Then come back to perl script.. The perl script can the same or diff it doesn't really matter i can split the file into two..if that the case..

Kindly let me know if this is possible..

Thanks
Xytiz
# 11  
Old 06-02-2009
Thank you very much ..
Sorry for a late reply

Xytiz

-----Post Update-----

Hi All,

I need to update the array list dynamically which i am unable to do ..Pls help or give directions which i can work out...following the my code
if (@abc == ())
{
$abc[0] = $lineOfData[0];

}
else
{
$abc[$#abc+1] = $lineOfData[0];

#update the "abc" array ? here it should have the update number of elements by the end of this loop the above code does not ensure that :-(
}

Thanks
Xytiz
# 12  
Old 06-02-2009
Quote:
Originally Posted by xytiz
...
I need to update the array list dynamically which i am unable to do ..Pls help or give directions which i can work out...
...
You may want to have a look at the "push" function in the Perl documentation.

tyler_durden
# 13  
Old 06-03-2009
I'll call this a mercy post....


Code:
if (@abc) { #<-- @abc is not an empty array so append the other array to the end of it:
   @abc = (@abc,@lineOfData); #combine the two arrays 
}
else {
   @abc = @lineOfData;
}

Assumes you want @abc to have all the elements of @lineOfData in the same order or append @lineOfData to the end of @abc if @abc already has some data in it.
# 14  
Old 06-03-2009
Thank you very much

Thank you tyler_durden

I did not know about push function, That helped..

Xytiz

-----Post Update-----

hi kevin,

Thanks for your mercy :-)..

The push function helped it..

Xytiz
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Programming newbie -help!!

Hi I am trying to learn shell script and i ran into an issue. I am trying to read a file with few directories and tar them up. I used a while loop but i end up overwriting tar file with only the last directory in the file being tared . cat test.txt | ( while read line do tar -czPf... (8 Replies)
Discussion started by: SPR
8 Replies

2. AIX

Newbie & LPAR

Hello, what is the meaning of: lparstat -i Node Name : **** Partition Name : **** Partition Number : 1 Type : Shared-SMT Mode : Capped Entitled Capacity : 2.00 Partition Group-ID : 32769 Shared Pool ID : 0 Online Virtual CPUs : 4 Maximum Virtual CPUs : 4 Minimum Virtual CPUs :... (5 Replies)
Discussion started by: Talulah
5 Replies

3. Red Hat

newbie: Linux Server Names & Types..!!!

Any one tell me about the list of Redhat Linux Enterprise 5 SERVERS and their functions. thanks (3 Replies)
Discussion started by: salman103
3 Replies

4. Fedora

Newbie at Linux Kernel programming!

Hi Friends, This is my first ever post on this forum. I am a new user in the Linux field. Although, I have been working for sometime with CentOS at my work, I would consider myself an amateur only in this field. :D The way file system works in linux and the reason its open-source, has really... (7 Replies)
Discussion started by: rohitrajjain
7 Replies

5. SCO

newbie - CUPS installation & C compiler

Ok new in here so be gentle: I'm a programmer with the need to also be a sys admin on a box running: Client has purchased a Kyocera KM-4035 do it all machine. However, no driver exists for SCO and when I contacted their Kyocera rep he told me to install CUPS. I downloaded CUPS and ran... (2 Replies)
Discussion started by: bbxguy
2 Replies

6. Shell Programming and Scripting

perl newbie . &&..programming newbie (question 2)

Hello everyone, I am having to do a lot of perl scripting these days and I am learning a lot. I have this problem I want to move files from a folder and all its sub folders to one parent folder, they are all .gz files.. there is folder1\folder2\*.gz and there are about 50 folders... (1 Reply)
Discussion started by: xytiz
1 Replies

7. UNIX for Dummies Questions & Answers

Newbie help with New Line & Blank Line

I have this in my script: usercount=`ldapsearch -L -b"ou=people,ou=$ou,dc=paisleyhosting,dc=com" -h"$server" -p"1391" cn=* nothing | grep -c dn` admincount=`ldapsearch -b"ou=groups,ou=$ou,dc=paisleyhosting,dc=com" -h"$server" -p"1391" cn=USERADMIN* uniquemember | grep... (5 Replies)
Discussion started by: kthatch
5 Replies

8. UNIX for Dummies Questions & Answers

Newbie ? Need Help with If/Then & Line Breaks...

I hope this makes sense, but I need help with what is indicated with %%, below : A.) ####List active servers and send to file#### # ps -ef | grep jboss | grep sh | awk '{if ($14) {print $12;}else {print $11}}' | sort > /export/home/kthatch/script_results client302 client306 client309... (1 Reply)
Discussion started by: kthatch
1 Replies

9. UNIX for Dummies Questions & Answers

Programming Newbie Chick

OK, so I'm trying to finish my last individual assignment for this course, and it's the first time I've visited a forum (I've actually understood UNIX up to this point). I am having trouble with this one. I have to write a program that prompts the user to type their first name and stores it in a... (3 Replies)
Discussion started by: metalgoddess21
3 Replies

10. Programming

programming question from a newbie, please help

Hi Everyone, I really hope I could get some insight from a few of you, I've been searching the net for various resources, and this board seems to be the friendliest and most helpful by far. I work for a medical research company and we use sun 4 and we have different studies that have their... (1 Reply)
Discussion started by: milenky
1 Replies
Login or Register to Ask a Question