home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / internet / tcpip204 / TCPIP_Doc / Notes / Variables < prev   
Text File  |  1995-02-20  |  931b  |  31 lines

  1. Use of variables in TCPIP commands                  (v2.00g onwards)
  2. ==================================
  3.  
  4. Version of !TCPIP from 2.00g onwards have facilities for handling
  5. string variables in commands and menu macros.
  6.  
  7. These variables may be embedded vitually anywhere, including in the
  8. AutoExec, Config, Domain and resolve.ResConf files and in any commands
  9. typed into the main command window, including of course, macros selected
  10. from the command menu in the main window.
  11.  
  12. To create a variable, or re-assign a variable use the "set" command as
  13. follows:
  14.  
  15. setvar <var_name> "<value>"
  16.  
  17. For example:
  18.  
  19. set user "adam"
  20. set node "comptech"
  21. set domain "demon.co.uk"
  22.  
  23. These variables are referenced by including them where needed,
  24. surrounded by braces '{' and '}'. For example
  25.  
  26. set email  "{user}@{host}.{domain}"
  27.  
  28. Assuming user, node and domain have been set as above, this would result
  29. in email being set to "adam@comptech.demon.co.uk".
  30.  
  31.