📜  windows untar powershell - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:21:10.578000             🧑  作者: Mango

Windows 解压 tar 包的 Powershell 命令 - Shell-Bash

如果你是一个在 Windows 上工作的开发人员,你可能会遇到需要解压 tar 包的情况。然而,tar 在 Windows 上并不是默认安装的,因此你需要使用其他方式来解压。其中一种方式是使用 PowerShell 命令来解压 tar 包。

安装 PowerShell

首先,你需要确保你已经安装了 PowerShell。如果你使用的是 Windows 10,那么 PowerShell 可能已经预安装了。你可以通过搜索菜单中的 PowerShell 来查看是否已经安装。如果你没有安装,请下载并安装最新的 PowerShell 版本。

解压 tar 包

使用 PowerShell 解压 tar 包非常简单。你只需要使用以下命令:

Expand-Archive -Path "C:\path\to\file.tar" -DestinationPath "C:\destination\folder"
  • -Path:需要解压的 tar 包的完整路径。
  • -DestinationPath:解压后文件将要保存的目录的完整路径。

你可以将 C:\path\to\file.tarC:\destination\folder 替换成你自己的文件路径和目标文件夹路径。

示例

例如,假设你有一个名为 example.tar 的 tar 包,位于 C:\users\username\downloads 文件夹下,你想要将其解压到 C:\users\username\documents 文件夹下,你可以使用以下命令:

Expand-Archive -Path "C:\users\username\downloads\example.tar" -DestinationPath "C:\users\username\documents"

这个命令将解压 example.tar 文件,并将其保存在 C:\users\username\documents 文件夹中。

结论

现在你已经知道如何通过 PowerShell 在 Windows 上解压 tar 包了。这是一种非常简单又快速的方式,而且不需要安装任何额外的软件。记住,只要确保你已经安装了最新版本的 PowerShell,你就可以使用以上命令来解压 tar 文件啦!