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 strongm 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: *

  1. meetramana

    suppress Killed message

    nope, that didn't work either. any ideas?
  2. meetramana

    suppress Killed message

    I was trying the trap in Script1 where as the process1 is in script2, I will try the trap in script2.
  3. meetramana

    suppress Killed message

    sorry to bug you.. Actually, I am having an issue using it in the script, it's not working Here is the scenario, Script1 calls Script2 which implements process1 and after a certain time I kill process1 from script1 when I execute the script I get <Path>/Script2[23]: 888842 Killed where...
  4. meetramana

    suppress Killed message

    you are the man. Wow that was awesome. Thanks a lot. Though I actually wanted this in a shell script, I have the habit of making sure it runs in shell first. so, if I have to do the same in a shell script, everything else without the set +m should be fine, correct? and everything seemed to...
  5. meetramana

    suppress Killed message

    looks like thats not working either here is what I am doing sleep 300 & ps -ef | grep sleep # ( and catch the pid here ) trap "echo okay i quit; exit 0" 15 kill <pid> and just hit enter at the command prompt & I see [1] + Terminated sleep 300 & AM I doing something wrong?
  6. meetramana

    suppress Killed message

    Thanks for your response Annihilannic, Unfortuanately I don't have bash installed/avaiable. if I do normal kill (signal 15) in korn like you suggested I get Terminated message in place of killed. kill <PID> gives : [1] + Terminated <Process Info> kill -9 <PID> gives : [1] + Killed...
  7. 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
  8. meetramana

    Microphone issue on D630

    Didn't find any solutions yet, any help? Thanks
  9. meetramana

    Microphone issue on D630

    Thankyou all for the responses, linney, I have visited the links but I can't correlate my issue with any of those. They all seem to have issues with mic itself. Mine works perfectly with any chat/yahoo/skype sessions. Geates, I haven't tried your thought, however, I don;t think it is really...
  10. meetramana

    Microphone issue on D630

    I know what you mean. unfortunately I don't even see that option with sigmatel driver. it's there in my other computer but this one. All I see under microphone is Advanced button, which has microphone boost option, not mute/unmute.
  11. 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...
  12. meetramana

    Network Connection icon does not update

    Nope, It didn't work. I guess MS Updates suck sometimes.
  13. meetramana

    Network Connection icon does not update

    Thankyou linney, I will give that a try. Thanks
  14. meetramana

    Network Connection icon does not update

    I am having the same issue in XP Pro. Does any one know a solution for this? is this a bug in winXP Pro SP3 update? Ever since SP3 got into my PC I am seeing this issue. Thanks
  15. meetramana

    getopts with long flags

    Thankyou p5Wizard. I did the conversion yesterday using sed. But your code definitely helps to learn something new. I really liked it. Sweet... Thanks again.
  16. 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...
  17. 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...
  18. 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...
  19. meetramana

    Date determination

    Thats even shorter and works. Thankyou
  20. meetramana

    Date determination

    I got it. perl -e '@y=localtime(time() - 86400 * $ARGV[0] );printf "%s-%02d-%-02d\n",$y[5]+1900,$y[4]+1,$y[3];' $DAYS

Part and Inventory Search

Back
Top