How to Install and Uninstall python3-gitlike-commands Package on Kali Linux

Last updated: November 07,2024

1. Install "python3-gitlike-commands" package

Please follow the steps below to install python3-gitlike-commands on Kali Linux

$ sudo apt update $ sudo apt install python3-gitlike-commands

2. Uninstall "python3-gitlike-commands" package

Please follow the guidance below to uninstall python3-gitlike-commands on Kali Linux:

$ sudo apt remove python3-gitlike-commands $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-gitlike-commands package on Kali Linux

Package: python3-gitlike-commands
Source: gitlike-commands
Version: 0.3.0-1
Installed-Size: 27
Maintainer: Debian Python Team
Architecture: all
Depends: python3:any
Size: 5360
SHA256: afd107f60ab45838c05336070db1bf8aa76d2691314dc4b3a6c2ef243d63bf9b
SHA1: c347da3b342a1068e61e222f5bdf777a8ac3253c
MD5sum: dffbded03c69b4a65c0baea1589a7460
Description: Python module for easily creating `git`-style subcommand handling
The subcommand_driver automatically figures out what name the script was
called as, then looks for subcommands and runs them if found, passing in any
command line options.
.
If you have a `foo` script in your `$PATH` as shown below
.
#!/usr/bin/env python3
from gitlike_commands import subcommand_driver
.
if __name__ == '__main__':
subcommand_driver()
.
Running `foo bar baz` will look for a `foo-bar-baz` script, and if present in
your $PATH, run it. If there is no `foo-bar-baz`, it will look for `foo-bar`,
and if it finds that, run `foo-bar baz`.
.
The subcommands can be written in any language, the only requirements are that
they are marked executable and follow the `foo-something` naming convention.
Description-md5:
Homepage: https://github.com/unixorn/gitlike-commands
Section: python
Priority: optional
Filename: pool/main/g/gitlike-commands/python3-gitlike-commands_0.3.0-1_all.deb