Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/apt-cache.nu
Cian Hughes 896af887ca Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
2024-11-07 13:52:17 +00:00

41 lines
456 B
Nu

# Display help and exit
extern "apt-cache" [
...args
]
# Build apt cache
extern "apt-cache gencaches" [
...args
]
# Show cache statistics
extern "apt-cache stats" [
...args
]
# Show packages in cache
extern "apt-cache dump" [
...args
]
# Print available list
extern "apt-cache dumpavail" [
...args
]
# List unmet dependencies in cache
extern "apt-cache unmet" [
...args
]
# Search full package name
extern "apt-cache search" [
...args
]