Search Results

Search: Posts Made By: parthmittal2007
2,554
Posted By parthmittal2007
This is not the right thread to post your...
This is not the right thread to post your queries. Please create the new one
2,554
Posted By parthmittal2007
Now my Question is If suppose the file is like ...
Now my Question is If suppose the file is like

[test]
status=running
username=abc
password=123456
server = linux

[live]
status=running
username=xyz
password=09876
server=unix


The...
2,554
Posted By parthmittal2007
I have posted up
I have posted up
2,554
Posted By parthmittal2007
The script fails when i write ./script test...
The script fails
when i write ./script test username
It gives output as
abc
xyz
But It should give only output as abc
2,554
Posted By parthmittal2007
No its not like that I will pass two values...
No its not like that
I will pass two values and the script will give the result .
Suppose the file is like

[test]
status=running
username=abc
password=123456
server=linux

[live]...
2,554
Posted By parthmittal2007
Read from a file in unix(Continue from previous thread)
Hi This is continuation of previos thread
[test]
status=running
username=abc
password=123456
server=linux

The script was made which is used to capture the data from file
./scr test status...
1,041
Posted By parthmittal2007
Comment Section
Comment Section
1,041
Posted By parthmittal2007
Read from a file in unix
Hi All
I have a file type such as

[TEST]
client=SSH
server=testing
user=abc
password=xyz
dir=home

[Run]
client=putty
server=running
user=pqr
password=sas
dir=main

[dump]...
2,752
Posted By parthmittal2007
Suppose i have logined into the first gmail page,...
Suppose i have logined into the first gmail page, where it ask's for user name and password, after that suppose i want to click on Compose button then how can i do in Perl Script..

---------- Post...
2,752
Posted By parthmittal2007
I didn't get you, can you please explain me with...
I didn't get you, can you please explain me with an small example.
2,752
Posted By parthmittal2007
Navigating a WebPage with Perl
Hi All
Below is Code, It opens a link from which it ask a login name and password, the script enter the login name and password and navigate to next page..
In the next page there is a drop down box...
1,337
Posted By parthmittal2007
That's Done, Thank You.. One more thing I want...
That's Done, Thank You..
One more thing I want to ask, Is it possible to send the file (without opening it) through Socket.
1,337
Posted By parthmittal2007
I just keep the the name of Local Host I think...
I just keep the the name of Local Host
I think we can keep it any , it doesn't effect anything right??
1,337
Posted By parthmittal2007
Socket Programming in Perl
Hi All
I am getting an error when using the below code
Receiver

use IO::Socket;
$sock = new IO::Socket::INET (LocalHost => 'goldengate',
LocalPort => 1200,
Proto => 'tcp',
Listen => 5,...
1,075
Posted By parthmittal2007
@row = (1,2,3,4); push(@{check}, \@row); ...
@row = (1,2,3,4);
push(@{check}, \@row);
print ${$check[0]}[1]."\n"; #1
print $check[0][1]."\n"; #2
print $check[0]->[1]."\n"; #3


I mean to say which option (1 OR 2 OR 3) is correct??
If...
1,075
Posted By parthmittal2007
Also one more question , what does this Code mean...
Also one more question , what does this Code mean

@row = (1,2,3,4);

push(@{check}, \@row);
If I want to print the values then how can I??
Also how can get the reference value for @row
1,075
Posted By parthmittal2007
Query related to references in array in Perl
Hi All
I have a doubt and want to be cleared I am using

@array = (10, 20);
$rarray = \@array;
#print "$rarray\n";
#print "@$rarray\n";

$rr= \$array[0];
#print $$rr;
$rr++;
print...
1,944
Posted By parthmittal2007
That's Correct, But my question is why this error...
That's Correct, But my question is why this error is coming, whats the reason behind that..
1,944
Posted By parthmittal2007
Perl: ERROR in FTP in UNIX
Hi all
I am using this FTP Script

my $envir = $ENV{ECR_ENV};
if ($envir eq 'dev') {
open FTP, "|ftp -n $ftpHost" or die "Problem with ftp to $ftpHost\n";
print FTP "user...
1,662
Posted By parthmittal2007
Is there any function to export the table in Perl
Is there any function to export the table in Perl
1,662
Posted By parthmittal2007
Oracle Data BackUp with Help Of Perl
Hi All
I am able to connect my oracle database with Perl and able to execute the queries.
There is one schema names master19 which contains 50 table.

I want to take backup of each table in and...
1,095
Posted By parthmittal2007
Oracle Data BackUp with Help Of Perl
Hi All
I am able to connect my oracle database with Perl and able to execute the queries.
There is one schema names master19 which contains 50 table.

I want to take backup of each table in and...
991
Posted By parthmittal2007
FTP in UNIX
I am using the FTP script in UNIX, Is it possible that when the FTP connection maintained in the remote computer
It should check the file on the remote computer if file is present then it should ftp...
1,327
Posted By parthmittal2007
What in If, and if condition is not met then if...
What in If, and if condition is not met then if will throw back to while loop
1,327
Posted By parthmittal2007
While Loop in Perl
Hi All
I am reading the file using while loop in Perl someting like

while (my $s=<F>){
chomp($s);
..
..
..
}

What i want to do is after the chomp statement i used some condition, if the...
Showing results 1 to 25 of 189

 
All times are GMT -4. The time now is 07:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy