Search Results

Search: Posts Made By: abubacker
2,207
Posted By abubacker
Please be clear of your input and output
Please be clear of your input and output
5,331
Posted By abubacker
I believe the problem in your X , please make...
I believe the problem in your X , please make sure all your X configuration is correct
2,652
Posted By abubacker
Hope this perl code will help make sure you...
Hope this perl code will help
make sure you dont have any blank lines in the file1 and file2

use strict;
use warnings;

my @a = `cat file1 `;
my @b = `cat file2 `;

foreach my $c (@a )...
11,278
Posted By abubacker
Are you sure that you have not used sudo command...
Are you sure that you have not used sudo command , other wise it would be cron daemon of root ( methyl said ).
1,381
Posted By abubacker
Please be specific !
Please be specific !
2,102
Posted By abubacker
Do you mean you want to use the mail command or...
Do you mean you want to use the mail command or some thing else ?
2,302
Posted By abubacker
solution
Hope this snippet would give you an idea

use strict;
use warnings;



open FH , "testfile" or die "$0:$!" ;
while (<FH> )
{
my $line = $_ ;

# check for a type complete
...
16,289
Posted By abubacker
Thanks for your explanation Sardare :-)
Thanks for your explanation Sardare :-)
16,289
Posted By abubacker
why dont you prefer scp command ! ----------...
why dont you prefer scp command !

---------- Post updated at 06:05 AM ---------- Previous update was at 06:02 AM ----------

Asking for that sake of curiosity , is there any special reason for...
57,680
Posted By abubacker
Continue in this node...
Continue in this node https://www.unix.com/hp-ux/43823-disabled-locked-users.html
45,908
Posted By abubacker
Ask your home work question here Homework &...
Ask your home work question here Homework & Coursework Questions - The UNIX and Linux Forums (https://www.unix.com/homework-coursework-questions/)
8,565
Posted By abubacker
Please tell which console you are using.
Please tell which console you are using.
9,041
Posted By abubacker
I also suspect the same , make sure is there any...
I also suspect the same , make sure is there any space before EOF.
try giving a semicolon before a first EOF

ex : <<EOF ;
32,022
Posted By abubacker
Yeah good , I appreciate your effort , But why...
Yeah good , I appreciate your effort ,
But why did u paste here ?,
1,611
Posted By abubacker
If u send a single file then you can achieve...
If u send a single file then you can achieve using a scp command itself. if u need more than some amount of file to be send you must write a script with scp.
7,234
Posted By abubacker
Solution
Do u mean if u change the value of the cv variable then u want the value of the filename also be changed automatically. with out giving this line

file_name="$(echo "CP99978_$cv.TXT")"
Correct...
2,071
Posted By abubacker
Solution
I don't have an idea of your inputs , but If you want to append a line in a file with a loop using script then you might refer this script

read num # Get an input

for i in `seq 1 $num`
do
...
2,071
Posted By abubacker
do u mean want to append the lines in a file...
do u mean want to append the lines in a file based on the user inputs ?
3,605
Posted By abubacker
Hope this url will help Automating Telnet in a...
Hope this url will help
Automating Telnet in a Bash Script sunXran (http://sunxran.wordpress.com/2007/12/31/automating-telnet-in-a-bash-script)
28,706
Posted By abubacker
I think md5sum would help, and comparison is so...
I think md5sum would help, and comparison is so easy and perfect
Please refer this script

file1="`md5sum filename1 |cut -d ' ' -f 1`"
file2="`md5sum filename2 |cut -d ' ' -f 1`"

if [ $file1...
2,508
Posted By abubacker
Please provide an example
Please provide an example
4,925
Posted By abubacker
Solution
If you want to run the process background programmatically , then you must make the process as a daemon.

I :

* The first step is that change the current directory as root "/" because it...
3,327
Posted By abubacker
Actually do you want to compare only 2 files or...
Actually do you want to compare only 2 files or 1000 files at a same time?
31,952
Posted By abubacker
([0-9]{1,3}\.){3}[0-9]+ since you can give...
([0-9]{1,3}\.){3}[0-9]+

since you can give the ip address as

1.2.3.4
1.2.2.46
192.168.1.1


That means the ip can be denoted by 1 to 3 numbers in each division,
I think this must be...
7,419
Posted By abubacker
Appreciate ahmad.diab's solution
Appreciate ahmad.diab's solution
Showing results 1 to 25 of 99

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