“apt show”的 pkg 类似物是什么?

“apt show”的 pkg 类似物是什么?

pkg info显示有关的完整信息已安装包。如何为尚未安装的软件包获得相同的输出?在 Ubuntu 上,apt show正是这样做的。

预计到达时间:我正在寻找的示例,取自 Ubuntu。

$ apt show sudoku
Package: sudoku
Version: 1.0.5-2build2
Priority: optional
Section: universe/games
Origin: Ubuntu
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Peter Spiess-Knafl <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 124 kB
Depends: libc6 (>= 2.4), libncurses5 (>= 6), libtinfo5 (>= 6)
Homepage: https://github.com/cinemast/sudoku
Download-Size: 41.9 kB
APT-Sources: http://ru.archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
Description: console based sudoku
 This sudoku puzzle generator/solver features:
  * character based (curses) interface;
  * cross-platform (Minix, Unix, Windows) with full source code (ANSI C);
  * generates hints upon request;
  * classification of board difficulty (very easy, easy, medium, hard or
    fiendish);
  * generation of new boards;
  * easy entry of boards published in newspapers, Internet, ...;
  * multiple output formats (text, csv, HTML, PostScript).

答案1

用于pkg rquery [query statements] [package name]复制apt show.这个论坛帖子概述了它与 的相似之处apt-cache show。这rquery 联机帮助页涵盖查询命令的基础知识。一个例子是这样的:

pkg rquery %n:\n%o:\n%p:\n%e pkg

这显示了包的名称 (%n)、包的来源 (%o)、包的前缀 (%p) 以及包的描述 (%e)。所有这些都拆分为自己的换行符 (\n)。有很多选项和格式。请与联机帮助页对于更具体的查询。要获得相同的输出,apt show您将需要几乎使用每个选项,但如果您只需要知道一两件事,您只需查询这些内容即可。

答案2

对于一个简短的等效尝试:

$ pkg search -gfSn ba*le
bastille
Name           : bastille
Version        : 0.9.20220216
Origin         : sysutils/bastille
Architecture   : FreeBSD:13:*
Prefix         : /usr/local
Repository     : FreeBSD [pkg+http://pkg.FreeBSD.org/FreeBSD:13:aarch64/quarterly]
Categories     : sysutils
Licenses       : BSD3CLAUSE
Maintainer     : [email protected]
WWW            : https://bastillebsd.org
Comment        : Jail automation framework
Annotations    :
Flat size      : 247KiB
Pkg size       : 37.4KiB
Description    :
Bastille helps you quickly create and manage FreeBSD Jails.

The project focuses on secure defaults, automation and
repeatable templates.

WWW: https://bastillebsd.org

-g整个搜索字段的 glob 模式 对名称进行
-f完整信息搜索
-Sn

相关内容