Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/apt-build.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

54 lines
1.7 KiB
Nu

[# Display help and exit
extern "apt-build" [
--help # Display help and exit
--nowrapper # Do not use gcc wrapper
--remove-builddep # Remove build-dep
--no-source # Do not download source
--build-dir # Specify build-dir
--rebuild # Rebuild a package
--reinstall # Rebuild and install an installed package
--patch-strip(-p) # Prefix to strip on patch
--yes(-y) # Assume yes to all questions
--purge # Use purge instead of remove
--noupdate # Do not run update
--version(-v) # Display version and exit
...args
]
# Update list of packages
extern "apt-build update" [
--help # Display help and exit
--nowrapper # Do not use gcc wrapper
--remove-builddep # Remove build-dep
--no-source # Do not download source
--build-dir # Specify build-dir
--rebuild # Rebuild a package
--reinstall # Rebuild and install an installed package
--patch-strip(-p) # Prefix to strip on patch
--yes(-y) # Assume yes to all questions
--purge # Use purge instead of remove
--noupdate # Do not run update
--version(-v) # Display version and exit
...args
]
# Upgrade packages
extern "apt-build upgrade" [
--help # Display help and exit
--nowrapper # Do not use gcc wrapper
--remove-builddep # Remove build-dep
--no-source # Do not download source
--build-dir # Specify build-dir
--rebuild # Rebuild a package
--reinstall # Rebuild and install an installed package
--patch-strip(-p) # Prefix to strip on patch
--yes(-y) # Assume yes to all questions
--purge # Use purge instead of remove
--noupdate # Do not run update
--version(-v) # Display version and exit
...args
]]
[# Rebuild your system
extern "apt-bulid world" [
...args
]]