📜  检查 snap 版本 - Shell-Bash (1)

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

检查 snap 版本 - Shell/Bash

Snap 是一种用于在各种 Linux 发行版之间方便地安装、更新和管理软件的包管理器。在使用 Snap 安装软件时,有时需要检查当前安装的软件版本,以便查看是否有可用的更新。在 Shell/Bash 中,可以使用以下方法来检查 Snap 版本。

检查 Snap 是否安装

在检查 Snap 版本之前,需要确保 Snap 已经正确安装。可以通过以下命令来检查是否已经安装了 Snap:

$ snap version

如果已经安装,将输出当前 Snap 版本号。如果未安装,将提示安装 Snap。

检查 Snap 应用程序版本

要检查已安装的 Snap 应用程序的版本,可以使用以下命令:

$ snap info <snap应用程序>

<snap应用程序> 替换为你要检查版本的 Snap 应用程序的名称,例如:

$ snap info youtube-dl

将返回以下信息:

name:      youtube-dl
summary:   Command-line program to download videos from YouTube.com and other video sites
publisher: Daniel Hahler
store-url: https://snapcraft.io/youtube-dl
contact:   https://github.com/rg3/youtube-dl/issues
license:   GPL-2.0-only
description: |
  youtube-dl is a command-line program to download videos from YouTube.com and a
  few more sites. It requires the Python interpreter, version 2.6, 2.7, or 3.2+ and
  is usually available in the package repository of most Linux distributions.
  
  youtube-dl should work in your Unix box, in Windows or in Mac OS X. It is released
  to the public domain, which means you can modify it, redistribute it or use it
  however you like.
commands:
  - youtube-dl
snap-id:      J04nLpfFp9nGWrOpJhdscxSx5ya73BPn
tracking:     latest/stable
refresh-date: today at 14:55 CST
channels:
  latest/stable:    2021.02.22               
  latest/candidate: 2021.02.22               
  latest/beta:      2021.07.25               
  latest/edge:      git-a1c7b20 from GitHub
installed:         2021.09.06 (801) 8MB - auto

在返回的信息中,installed 字段将显示当前已安装的 Snap 应用程序的版本号。例如,在此示例中,版本号为 2021.09.06

总结

现在你知道了如何在 Shell/Bash 中检查 Snap 版本。请确保你已经正确安装了 Snap,并使用 snap info 命令来检查当前已安装的 Snap 应用程序的版本。这些命令可以帮助你确保你始终使用最新的 Snap 形式的软件。