[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[网络连接] 是不是很幼稚啊,如何生成Hosts

  1. @echo off
  2. echo # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.              >>E:\Study\CMD\1.txt
  3. echo #
  4. echo # This file contains the mappings of IP addresses to host names. Each   >>E:\Study\CMD\1.txt
  5. echo # entry should be kept on an individual line. The IP address should   >>E:\Study\CMD\1.txt
  6. echo # be placed in the first column followed by the corresponding host name.   >>E:\Study\CMD\1.txt
  7. echo # The IP address and the host name should be separated by at least one   >>E:\Study\CMD\1.txt
  8. echo # space.   >>E:\Study\CMD\1.txt
  9. echo #   >>E:\Study\CMD\1.txt
  10. echo # Additionally, comments (such as these) may be inserted on individual   >>E:\Study\CMD\1.txt
  11. echo # lines or following the machine name denoted by a '#' symbol.   >>E:\Study\CMD\1.txt
  12. echo # 该文件为yangshw1990提供   >>E:\Study\CMD\1.txt
  13. echo # For example:   >>E:\Study\CMD\1.txt
  14. echo #   >>E:\Study\CMD\1.txt
  15. echo #      102.54.94.97     rhino.acme.com          # source server   >>E:\Study\CMD\1.txt
  16. echo #       38.25.63.10     x.acme.com              # x client host   >>E:\Study\CMD\1.txt
  17. echo 127.0.0.1 localhost              >>E:\Study\CMD\1.txt
  18. exit
复制代码
是不是很幼稚啊?!?!?!
Name:Scott Yang
E-Mail;yangshw1990@gmail.com

看不懂,能不能给解释下。最好能详细点

TOP

  1. @echo off
  2. (echo # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
  3. echo #
  4. echo # This file contains the mappings of IP addresses to host names. Each   
  5. echo # entry should be kept on an individual line. The IP address should
  6. echo # be placed in the first column followed by the corresponding host name.  
  7. echo # The IP address and the host name should be separated by at least one
  8. echo # space.
  9. echo #
  10. echo # Additionally, comments ^(such as these^) may be inserted on individual
  11. echo # lines or following the machine name denoted by a '#' symbol.
  12. echo # For example:
  13. echo #
  14. echo #      102.54.94.97     rhino.acme.com          # source server
  15. echo #       38.25.63.10     x.acme.com              # x client host
  16. echo 127.0.0.1 localhost ) >>E:\1.txt
复制代码
赞成“拿来主义”,但是鄙视“伸手党”

TOP

建议用 more

TOP

返回列表