“猫”不被识别为内部或外部命令

‘cat’ 不被识别为内部或外部命令

‘cat’ is not recognized as an internal or external command

cat当我们在 Windows 上,在 CMD shell 中使用该命令时,出现错误“’cat’ 未被识别为内部或外部命令、可运行的程序或批处理文件” 。

要解决该错误,请使用type命令显示文件的内容。

cat 不被识别为内部或外部命令

type命令是 Unix/Linuxcat命令的 Windows 等价物。

命令
# 👇️ display the contents of a file named my_file.txt type my_file.txt # 👇️ display the contents of a lengthy file named my_file.txt, one screen at a time type my_file.txt | more

运行类型命令窗口

确保将my_file.txt占位符替换为您要阅读的文件的名称。

type命令

用于显示文本文件的内容。

您可以将命令的输出通过管道传递给more命令,以一次显示一个屏幕的冗长文件的内容。

命令
# 👇️ display the contents of a lengthy file named my_file.txt, one screen at a time type my_file.txt | more

请注意,您可以在 PowerShell 中使用该cat命令。

要打开 PowerShell:

  1. 单击搜索栏并键入“PowerShell”。

启动Powershell

  1. 单击“Windows PowerShell”应用程序。

直接在 PowerShell 中运行 cat 命令来读取文件的内容。

电源外壳
cat my_file.txt

Windows powershell 猫命令

如果您需要在特定文件夹中打开 PowerShell:

  1. 在窗口中打开文件夹。
  2. 在资源管理器中按下Shift并右键单击。

windows 在此处打开 powershell 窗口

  1. 单击“在此处打开 PowerShell 窗口”。
  2. 运行cat命令。
电源外壳
cat my_file.txt
或者,您可以通过在 Windows 计算机上cat安装来在 Git Bash 中运行该命令。git

If you already have git installed, you can search for Git Bash and use the
cat command, otherwise, you have to install git first.

# Running the cat command in Git Bash

To download git and be able to use Git Bash:

  1. Open the git downloads page and download the
    installer for Windows.
  2. Start the installer.
  3. You will be prompted to select a destination location. You can leave the
    default option and click Next.

git 选择目标位置

  1. You will be prompted to select components on the next screen. Leave the
    default options and click Next.

git 选择组件

  1. Click Next on the screen that prompts you to “Select Start Menu Folder”.

  2. On the next screen, you can choose the default editor for Git, e.g.
    Notepad, Notepad++ or any other editor you prefer.

选择 git 默认编辑器

  1. On the “Adjust the name of the initial branch in new repositories screen”,
    click Next.

调整初始分支名称

  1. On the “Adjust your PATH environment” screen, make sure you have the default
    option of “Git from the command line and also from 3rd-party software”
    option selected and click “Next”.

调整路径环境

  1. For all the remaining screens, leave the default option selected and click
    Next.
  2. Lastly, click on the Install button to install git.

Once you have git installed, click on the Search field, type “Git Bash”
and start the application.

搜索 git bash

现在您可以cat直接在 Git Bash 中使用该命令。

GitBash
cat my_file.txt

在 git bash 中使用 cat 命令

如果需要在特定文件夹中打开 Git Bash:

  1. 在新窗口中打开文件夹。
  2. 在资源管理器中右键单击。

调整路径环境

  1. 单击“此处的 Git Bash”

现在您可以使用该cat命令来显示文本文件的内容。

GitBash
cat my_file.txt