Windows cmd命令行添加/删除路由
查看路由: route print 添加路由: route add 192.168.10.0 mask 255.255.255.0 192.168.1.254 删除路由: route delete 192.168.10.0 mask 255.255.255.0&nb…
知易未来
查看路由: route print 添加路由: route add 192.168.10.0 mask 255.255.255.0 192.168.1.254 删除路由: route delete 192.168.10.0 mask 255.255.255.0&nb…
find "abc" d:\abc.txt 在abc.txt中查找字符串abc的行。 find /i "abc" d:\abc.txt 参数/i代表的是“Ignore”(忽略),也就是忽略大小写。通过/I 参数可以不区分要查找的字符串“abc”的大小写。 find /n "abc" d:\abc.t…