mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-22 19:31:57 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
89 lines
1.1 KiB
Nu
89 lines
1.1 KiB
Nu
# Display help and exit
|
|
extern "apt-get" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Update sources
|
|
extern "apt-get update" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Upgrade or install newest packages
|
|
extern "apt-get upgrade" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Use with dselect front-end
|
|
extern "apt-get dselect-upgrade" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Distro upgrade
|
|
extern "apt-get dist-upgrade" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Install one or more packages
|
|
extern "apt-get install" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Display changelog of one or more packages
|
|
extern "apt-get changelog" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Remove and purge one or more packages
|
|
extern "apt-get purge" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Remove one or more packages
|
|
extern "apt-get remove" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Fetch source packages
|
|
extern "apt-get source" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Install/remove packages for dependencies
|
|
extern "apt-get build-dep" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Update cache and check dependencies
|
|
extern "apt-get check" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Clean local caches and packages
|
|
extern "apt-get clean" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Clean packages no longer be downloaded
|
|
extern "apt-get autoclean" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Remove automatically installed packages
|
|
extern "apt-get autoremove" [
|
|
|
|
...args
|
|
] |