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 IamaSherpa 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. xavier64

    Read an HTML URL

    Thanks, i gonna buy eyes (for the doc). Xav
  2. xavier64

    Read an HTML URL

    I make a script, and i want to read the result (or download the file) of an url (http://www.my_web_site.com/page.html) I don't want to display it, only get the result on a variable or on a downloaded file. Is someone have an idea.... Thanks, Xav
  3. xavier64

    Kill process under NT workstation

    Hi, I have got a process running (launch by set pid [exec ... &] ). I want to kill this process with a command Kill $pid. How can i do that under Windows NT. (cause under unix, i perform command "exec kill -9 $pid") Thanks, Xav
  4. xavier64

    How to know the end of a process

    It is exactly what i need, but tlist.exe is not avaible on my platform (NT4 Workstation) is it possible to know a "dos" command doing the same thing (like ps in Unix) Thanks a lot, Xav
  5. xavier64

    How to know the end of a process

    Ok, but i need to know how to get the end of a background process thanks, le bayonnais
  6. xavier64

    How to know the end of a process

    Hi, i've got a long exec to run (between 1 to 10 mins). If i call my exec 'normaly' (exec $command) the window is freezed. The display is not updated. So, is there a solution for refresh the window. If i run it in background (exec $command &),the window is well refresh, but i don't know how...
  7. xavier64

    background exec problem

    Hello, i'm running an exec command in background cause it's quite long. set error_code [catch {eval exec $command &} result] How can i know when it's finish ??? merry xmass, Xav
  8. xavier64

    html display

    i'm not using any package. my script "just" makes a puts "Content-type: text/html\r\n" then some puts "blablablablabla" and a very long exec command then again some puts "blablablabla" The puts generate a good html page, but the html page is only...
  9. xavier64

    html display

    Hi, i'm making a tcl/tk script running via an apache server. In this script i want to display information on the browser. So i use puts fonction, but the browser only display the page at the end of the script. Is it possible to have a "live" display ?? (like for php) Xav
  10. xavier64

    problem of length when submit a form

    Hi, I've got a form with a textarea i want to submit to a script. Every thing is ok, except when the textarea is fill with lot of chars. The end of the textarea is not send to my script. How many chars can we send ??? Is there a method to make it work ??? Xavier
  11. xavier64

    Space available on disk

    Thanks for your answer, but i'm looking for the command or a procedure making an unix df and not du. I don't care if the procedure make an exec. I can't use exec df cause i'm running my script under windows. Thanks,
  12. xavier64

    Space available on disk

    Hi, I'm looking for a command giving me the space available on my hard disk. I've tried "exec dir" but this command only return me the list of files in the directory

Part and Inventory Search

Back
Top