How to Install and Uninstall golang-github-tdewolff-argp-dev Package on Kali Linux

Last updated: July 03,2024

1. Install "golang-github-tdewolff-argp-dev" package

Here is a brief guide to show you how to install golang-github-tdewolff-argp-dev on Kali Linux

$ sudo apt update $ sudo apt install golang-github-tdewolff-argp-dev

2. Uninstall "golang-github-tdewolff-argp-dev" package

In this section, we are going to explain the necessary steps to uninstall golang-github-tdewolff-argp-dev on Kali Linux:

$ sudo apt remove golang-github-tdewolff-argp-dev $ sudo apt autoclean && sudo apt autoremove

3. Information about the golang-github-tdewolff-argp-dev package on Kali Linux

Package: golang-github-tdewolff-argp-dev
Source: golang-github-tdewolff-argp
Version: 0.0~git20240223.719bbce-1
Installed-Size: 79
Maintainer: Debian Go Packaging Team
Architecture: all
Depends: golang-github-go-sql-driver-mysql-dev (>= 1.7.1), golang-github-jmoiron-sqlx-dev (>= 1.3.5), golang-github-pelletier-go-toml-dev (>= 1.9.5)
Size: 16496
SHA256: 69bf019b227cef655642aa4d7aac5c6e48370d53fcb78faff9d7a62a2d3580f9
SHA1: 696c33574d40d8a5e6dbe571cab9458e3a6503e6
MD5sum: cc59f646d644fadd9774872bf7ed340a
Description: GNU command line argument parser (Go library)
The argp Go package provides a command-line argument parser
following the GNU standard.
.
./test -vo out.png --size 256 input.txt
.
with the following features:
.
* build-in help (-h and --help) message
* scan arguments into struct fields with configuration in tags
* scan into composite field types (arrays, slices, structs)
* allow for nested sub commands
.
GNU command line argument rules:
.
* arguments are options when they begin with a hyphen -
* multiple options can be combined: -abc is the same as -a -b -c
* long options start with two hyphens: --abc is one option
* option names are alphanumeric characters
* options can have a value: -a 1 means that a has value 1
* option values can be separated by a space, equal sign, or nothing: -a1 -
a=1 -a 1 are all equal
* options and non-options can be interleaved
* the argument -- terminates all options so that all following arguments
are treated as non-options
* a single - argument is a non-option usually used to mean standard in or
out streams
* options may be specified multiple times, only the last one determines
its value
* options can have multiple values: -a 1 2 3 means that a is an
array/slice/struct of three numbers of value [1,2,3]
.
See also github.com/tdewolff/prompt for a command-line prompter.
Description-md5:
Multi-Arch: foreign
Homepage: https://github.com/tdewolff/argp
Section: golang
Priority: optional
Filename: pool/main/g/golang-github-tdewolff-argp/golang-github-tdewolff-argp-dev_0.0~git20240223.719bbce-1_all.deb