【笔记】start学习笔记

前言

In computing, start is a command of the IBM OS/2, Microsoft Windows and ReactOS command-line interpreter cmd.exe (and some versions of COMMAND.COM) to start programs or batch files or to open files or directories using the default program.(维基百科

Windows通过start命令打开文件或访问URL

打开一个新的CMD窗口

1
start cmd
  • 简写
1
start

打开一个新的CMD窗口并执行命令

1
start cmd <cmd>

打开文件

  • 用默认打开方式打开文件
    • 可执行文件会被执行
    • 目录会通过资源管理器打开
1
start <file>

访问URL

1
start <url>

完成