如何在 Git Bash 中运行 Windows 命令提示符实用程序选项(如何指定 /slash 选项)?

如何在 Git Bash 中运行 Windows 命令提示符实用程序选项(如何指定 /slash 选项)?

一个在 Git Bash 中不起作用但仅在 Windows 提示符下起作用的示例:

// Git Bash
$ ipconfig /all
Error: unrecognized or incomplete command line.

// Windows
User> ipconfig /all
C:\Users\sergey>ipconfig /all

Windows IP Configuration

   Host Name . . . . . . . . . . . . : HOST-12345
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : NodeType
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   ... so on

如何在 Git Bash等/all中提供斜线选项/renew

答案1

将斜线改为破折号。至少它在 Windows 7 上的 1.9.4 上对我有效。

$ ipconfig -all

/或者通过使用 来退出\/

$ ipconfig \/all

答案2

应该是ipconfig //all(两个正斜杠)。
它也适用于 git bash;这就是所谓的 POSIX 路径转换,并且记录在这里

相关内容