mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-24 04:11:56 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
41 lines
456 B
Nu
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
|
|
] |