Search Results

Search: Posts Made By: reddymails
1,818
Posted By reddymails
Buddy you have missed the Greeter class...
Buddy you have missed the Greeter class definition and this question is related to Java.
2,656
Posted By reddymails
Rohith, you can download SFU3.5 (Services for...
Rohith,
you can download SFU3.5 (Services for unix) from microsoft website or Cygwin but both are arnd 200mb.

Hope this helps else google it :)
1,531
Posted By reddymails
To the final output use sort -u Some thing...
To the final output use sort -u
Some thing like

cat final.txt | sort -u > final1.txt

So now final1.txt will have only unique ids.
49,321
Posted By reddymails
Error: could not open /dev/kbd to get keyboard
hi,
Why do i get an error

"could not open /dev/kbd to get keyboard type US keyboard assumed"

wehn i execute the script on my AIX machine.

Just curious to know.
8,512
Posted By reddymails
Hi Raj, One approach i can think of is to...
Hi Raj,
One approach i can think of is to execuute the ls -l command on remote machine and get the list of files to Machine A.

STEP1: MachineA$ rsh MachineB ls /home/a2i8808 > ...
2,912
Posted By reddymails
hi, Try the following commands uname ...
hi,
Try the following commands

uname
sysinfo
psrinfo
psradm
p_online
processor_info
attributes
arch........

hope it helps.
3,497
Posted By reddymails
hi This is one way i try to get Date in...
hi

This is one way i try to get Date in different formats.
DATESTAMP=`TZ=CST+24 date +%Y%m%d`
echo ${DATESTAMP}
put an alias for above in your .profile and use that.Hope it helps
10,264
Posted By reddymails
Hi, There is a command called script which will...
Hi,
There is a command called script which will record all the commanda a user executes.Put this command in the glabal .profile so that each users commands are recorded.
NOTE:
script command ...
16,214
Posted By reddymails
hi Try to use split command. You can...
hi
Try to use split command.

You can split file based on number of lines, bytes and so on.
15,154
Posted By reddymails
hi, If u want to serach in all sub directories...
hi,
If u want to serach in all sub directories recursively try this.
for i in ` find . -name "*" -print`
do
grep -l foo ${i}
done


This will list all files that have the keyword foo.
6,382
Posted By reddymails
for i in `ps -eaf | grep "programname" | tr -s...
for i in `ps -eaf | grep "programname" | tr -s " " | cut -f2 -d " "`
do
kill -9 ${i}
done


ps -eaf | grep "programname" | tr -s " " | cut -f2 -d " " --- This should return all...
2,278
Posted By reddymails
hi , Just check the values of the following...
hi ,
Just check the values of the following environment variables

ORACLE_HOME
LD_LIBRARY_PATH
TNS_ADMIN
PATH

On your production machine.Based on that you will know which version you are...
39,935
Posted By reddymails
Hi Try this sftp $SFTP_USER@$SFTP_HOST yes...
Hi
Try this
sftp $SFTP_USER@$SFTP_HOST yes <<-!
lcd $DATA_DIR
cd $SFTP_REMOTE_DIR
put $REPORT
quit
!

Remember for Sftp we cant suppply password as part of...
6,777
Posted By reddymails
hi , In addition to cygwin other alternative is...
hi ,
In addition to cygwin other alternative is SFU (Services For unix) by microsoft. Try SFU 3.5 version.It s free downlodabel software from micorsoft.com. It has all three shells - C shell,...
8,632
Posted By reddymails
hi Nirmal, There is one program in book titled...
hi Nirmal,
There is one program in book titled network programming in unix by
Richard Stevens. See if you can that book. I had used the program form that book.
10,673
Posted By reddymails
hi, If your just looking for soem data file ...
hi,

If your just looking for soem data file which has large data in it.Try this use

=Rand(100,100) and the hit enter in microsoft word it will add 100 paragraphs with 100 lines of text in...
85,847
Posted By reddymails
Hi , Try this tar -xvf /the...
Hi ,
Try this

tar -xvf /the detsination/directory/youwant yourfile.tar
3
Ftp
1,626
Posted By reddymails
hi, Append time stamp with date-time for each...
hi,
Append time stamp with date-time for each file during ftping.
Some thing like say

CREDITINFO="FILE_TO_BE_FTPED"
DATESTAMP=`TZ=CST+24 date +%Y%m%d`

mv ${CREDITINFO} ...
10,673
Posted By reddymails
Login to your production and take a log file and...
Login to your production and take a log file and open it in word and save that .The only way you can :)
5,300
Posted By reddymails
Hi, One approach i can think of is to first ...
Hi,
One approach i can think of is to first list the process ids
1. ps -eaf | tr -s " " | cut -f 1 -d " " > mytemppid.txt
2. sed '1d' mytemppid.txt > mypid.txt //Deleting first...
3,426
Posted By reddymails
hi Genrating next date requires bit of too...
hi
Genrating next date requires bit of too many ifs any way here si what i would plan to do .hope it helps. I have just given you idea as how you can proceed.
Once done post the code :))))
...
3,938
Posted By reddymails
hey Gaurav, pipinng output /dev/null is like...
hey Gaurav,
pipinng output /dev/null is like wrting to a file but the contents is not stored in the file.I think its character device file.
cat /dev/null will display nothing inidicating...
22,848
Posted By reddymails
Use command dirname
hi asami,
you can use driname command


path= `dirname $0`
echo $path



This will give you only the path of your script which is what you were looking for.
7,718
Posted By reddymails
SFTP from UNIX (AIX) to Windows 2000 server
Hi all,
I have to sftp a file (put) from AIX server to Windows 2000 server.
The question is Windows 200 server that i am using doesnt have any SFTP server , if so i know we need to install...
Showing results 1 to 24 of 24

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