Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: meetramana
  • Content: Threads
  • Order by date
  1. meetramana

    suppress Killed message

    How do I suppress the Killed message in korn shell? When I ever I kill a process I see the Killed message in the next command output. If it is a script I am seeing it right out when I execute it. Is there a way to suppress the message? Thanks
  2. meetramana

    Microphone issue on D630

    Hi Friends, please help me resolve my microphone issues, I am not able hear what I speak into microphone on D630. I can do this with out any issues on a thinkpad. is that a sigmatel issue? Thinkpad has soundmax drivers which works sweet, but D630 sigmtel doesn't work. Am I missing something...
  3. meetramana

    getopts with long flags

    is there any way to do the following using getopts in korn shell ? myscript.ksh -input inputfilename -ouput outfilename instead of myscript.ksh -i inputfilename -o outfilename where inputfilename and outfilename are the real filename and the rest are flags except the scriptname. The above...
  4. meetramana

    getopts with long flag

    is there any way to do the following using getopts in korn shell ? myscript.ksh -input inputfilename -ouput outfilename instead of myscript.ksh -i inputfilename -o outfilename where inputfilename and outfilename are the real filename and the rest are flags except the scriptname. The above...
  5. meetramana

    DPC - Deferred Procedure Calls

    Hi Guys, Are you aware of any way of determining what DPC levels are being used by which program in windows XP SP2. For example, if you watch the process explorer or task manager you see something similar to.... Process PID CPU StartTIme DPCs n/a 10.00 n/a how do we determine what...
  6. meetramana

    Date determination

    Does any body have a quick idea about how to determine the date that was 300 days ago from the current date. 300 days is just an example. I was wondering if there is quick thing that I didn't know. Thanks
  7. meetramana

    weird vi editor problem

    Hi, I have opened a vi editor to edit a file, I mean vi <filename> and then I edited what ever I need to.. after that I am not able to go to command mode. it just ignores when I hit escape and what ever I type is appearing next to text that I just edited ( I mean when I try to do "ESC:wq"...
  8. meetramana

    whats wrong with my ssh

    Hi, Datafile contains: SERVER1 SERVER2 SERVER3 ..... ...... Script: while read server; do echo "checking for server $server" ssh $server "ps -ef | grep processname" done < Datafile Isn't above script supposed to loop through all the servers in the Datafile. right now it just runs for the...
  9. meetramana

    Simple command does not work

    just a simple command is not working. if I do cd c:\ it works if I do cd d:\ it does not work any ideas why ? infact I do have the d: drive on my machine and I can access the files from windows explorer Thanks
  10. meetramana

    How do I group the test operators

    Hi, How do I group the test operators with out making it a very long expression For example I was trying to do somethings like if [ -(afr) $FILENAME ]; then echo "FILE EXISTS" else echo "FILE EITHER DOES NOT EXIST OR NOT A REGUALR FILE OR NOT READABLE" fi Thanks
  11. meetramana

    value of variable

    How do I get the value of the variable/ Example: The script is invoked as follows script1 arg1 arg2 arg3 inside the script1: intger numberofarguments=$# echo $($numberofarguments) I want to print out : arg3 Thanks in advance -Ramana
  12. meetramana

    Not able to perfrom any db2 actions on my computer

    Hi all, I am not able start the db2 control center. I am getting the error as : DB2JAVIT : RC=9501 DB@INSTANCE : -2029059914 even if I try to uninstall. I am not able to uninstall the db2 from my computer. if I try install again, it goes to finish immediately. but still the same problems...
  13. meetramana

    Is it possible to edit a row in a table?

    Hi, Is it possible to edit a row in a table? Actually the data in the row is in xml format. However,I exactly know from which point to which to point to be deleted. for example: The information in the row is like this...
  14. meetramana

    Standard input into a while loop

    Hi all, How do I execute a while loop at the command prompt which takes stdin as the input. I just did that 3 days ago. and completely forgot how I did that. Breaking my head for 3 hours recalling how I did that still couldn't recall Can you please suggest me on how to do it Thanks
  15. meetramana

    Run the script at an exact day & time

    Hi all, Is there way that I can run a script at an exact date and time without having to define a cron job. something that I can run with in a script which watches for the date and time and kicks another script at the specified time. Thanks
  16. meetramana

    Turn Colums into Rows

    Hi all, Can somebody suggest how do I turn colums into rows and rows into columns. Example: Data Name1 Name2 Data1 NAME1 NAME2 Result should look like Data Data1 Name1 NAME1 Name2 NAME2

Part and Inventory Search

Back
Top