mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
ubuntu: clean up plugin and README
This commit is contained in:
parent
b7b40b0b68
commit
7fe353ccb6
2 changed files with 66 additions and 91 deletions
|
@ -10,34 +10,34 @@ plugins=(... ubuntu)
|
||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
Commands that use `$APT` will use apt if installed or defer to apt-get otherwise.
|
Commands that use `$APT` will use `apt` if installed or defer to `apt-get` otherwise.
|
||||||
|
|
||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
|---------|------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
|
|---------|--------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
|
||||||
| acs | `apt-cache search` | Search the apt-cache with the specified criteria |
|
| acs | `apt-cache search` | Search the apt-cache with the specified criteria |
|
||||||
| acp | `apt-cache policy` | Display the package source priorities |
|
| acp | `apt-cache policy` | Display the package source priorities |
|
||||||
| afs | `apt-file search --regexp` | Perform a regular expression apt-file search |
|
| afs | `apt-file search --regexp` | Perform a regular expression apt-file search |
|
||||||
| afu | `sudo apt-file update` | Generates or updates the apt-file package database |
|
| afu | `sudo apt-file update` | Generates or updates the apt-file package database |
|
||||||
| ag | `sudo $APT` | Run apt-get with sudo |
|
| ag | `sudo $APT` | Run apt-get with sudo |
|
||||||
| aga | `sudo $APT autoclean` | Clears out the local reposityory of retrieved package files that can no longer be downloaded |
|
| aga | `sudo $APT autoclean` | Clears out the local reposityory of retrieved package files that can no longer be downloaded |
|
||||||
| agb | `sudo $APT build-dep <source_pkg>` | Installs/Removes packages to satisfy the dependencies of a specified build pkg |
|
| agb | `sudo $APT build-dep <source_pkg>` | Installs/Removes packages to satisfy the dependencies of a specified build pkg |
|
||||||
| agc | `sudo $APT clean` | Clears out the local repository of retrieved package files leaving everything from the lock files |
|
| agc | `sudo $APT clean` | Clears out the local repository of retrieved package files leaving everything from the lock files |
|
||||||
| agd | `sudo $APT dselect-upgrade` | Follows dselect choices for package installation |
|
| agd | `sudo $APT dselect-upgrade` | Follows dselect choices for package installation |
|
||||||
| agi | `sudo $APT install <pkg>` | Install the specified package |
|
| agi | `sudo $APT install <pkg>` | Install the specified package |
|
||||||
| agli | `apt list --installed` | List the installed packages |
|
| agli | `apt list --installed` | List the installed packages |
|
||||||
| aglu | `sudo apt-get -u upgrade --assume-no` | Run an apt-get upgrade assuming no to all prompts |
|
| aglu | `sudo apt-get -u upgrade --assume-no` | Run an apt-get upgrade assuming no to all prompts |
|
||||||
| agp | `sudo $APT purge <pkg>` | Remove a package including any configuration files |
|
| agp | `sudo $APT purge <pkg>` | Remove a package including any configuration files |
|
||||||
| agr | `sudo $APT remove <pkg>` | Remove a package |
|
| agr | `sudo $APT remove <pkg>` | Remove a package |
|
||||||
| ags | `$APT source <pkg>` | Fetch the source for the specified package |
|
| ags | `$APT source <pkg>` | Fetch the source for the specified package |
|
||||||
| agu | `sudo $APT update` | Update package list |
|
| agu | `sudo $APT update` | Update package list |
|
||||||
| agud | `sudo $APT update && sudo $APT dist-upgrade` | Update packages list and perform a distribution upgrade |
|
| agud | `sudo $APT update && sudo $APT dist-upgrade` | Update packages list and perform a distribution upgrade |
|
||||||
| agug | `sudo $APT upgrade` | Upgrade available packages |
|
| agug | `sudo $APT upgrade` | Upgrade available packages |
|
||||||
| agar | `sudo $APT autoremove` | Remove automatically installed packages no longer needed |
|
| agar | `sudo $APT autoremove` | Remove automatically installed packages no longer needed |
|
||||||
| aguu | `sudo $APT update && sudo $APT upgrade` | Update packages list and upgrade available packages |
|
| aguu | `sudo $APT update && sudo $APT upgrade` | Update packages list and upgrade available packages |
|
||||||
| allpkgs | `dpkg --get-selections \| grep -v deinstall` | Print all installed packages |
|
| allpkgs | `dpkg --get-selections \| grep -v deinstall` | Print all installed packages |
|
||||||
| kclean | `sudo aptitude remove -P ?and(~i~nlinux-(ima\|hea) ?not(~n$(uname -r)))` |Remove ALL kernel images and headers EXCEPT the one in use |
|
| kclean | `sudo aptitude remove -P ?and(~i~nlinux-(ima\|hea) ?not(~n$(uname -r)))` |Remove ALL kernel images and headers EXCEPT the one in use |
|
||||||
| mydeb | `time dpkg-buildpackage -rfakeroot -us -uc` | Create a basic .deb package |
|
| mydeb | `time dpkg-buildpackage -rfakeroot -us -uc` | Create a basic .deb package |
|
||||||
| ppap | `sudo ppa-purge <ppa>` | Remove the specified PPA |
|
| ppap | `sudo ppa-purge <ppa>` | Remove the specified PPA |
|
||||||
|
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
@ -49,4 +49,12 @@ Commands that use `$APT` will use apt if installed or defer to apt-get otherwise
|
||||||
| apt-list-packages | `apt-list-packages` | List packages by size |
|
| apt-list-packages | `apt-list-packages` | List packages by size |
|
||||||
| kerndeb | `kerndeb` | Kernel-package building shortcut |
|
| kerndeb | `kerndeb` | Kernel-package building shortcut |
|
||||||
|
|
||||||
|
## Authors:
|
||||||
|
|
||||||
|
- [@AlexBio](https://github.com/AlexBio)
|
||||||
|
- [@dbb](https://github.com/dbb)
|
||||||
|
- [@Mappleconfusers](https://github.com/Mappleconfusers)
|
||||||
|
- [@trinaldi](https://github.com/trinaldi)
|
||||||
|
- [Nicolas Jonas](https://nextgenthemes.com)
|
||||||
|
- [@loctauxphilippe](https://github.com/loctauxphilippe)
|
||||||
|
- [@HaraldNordgren](https://github.com/HaraldNordgren)
|
||||||
|
|
|
@ -1,76 +1,43 @@
|
||||||
# Authors:
|
|
||||||
# https://github.com/AlexBio
|
|
||||||
# https://github.com/dbb
|
|
||||||
# https://github.com/Mappleconfusers
|
|
||||||
# https://github.com/trinaldi
|
|
||||||
# Nicolas Jonas nextgenthemes.com
|
|
||||||
# https://github.com/loctauxphilippe
|
|
||||||
# https://github.com/HaraldNordgren
|
|
||||||
#
|
|
||||||
# Debian, Ubuntu and friends related zsh aliases and functions for zsh
|
|
||||||
|
|
||||||
(( $+commands[apt] )) && APT=apt || APT=apt-get
|
(( $+commands[apt] )) && APT=apt || APT=apt-get
|
||||||
|
|
||||||
alias acs='apt-cache search'
|
alias acs='apt-cache search'
|
||||||
compdef _acs acs='apt-cache search'
|
|
||||||
|
|
||||||
alias afs='apt-file search --regexp'
|
alias afs='apt-file search --regexp'
|
||||||
compdef _afs afs='apt-file search --regexp'
|
|
||||||
|
|
||||||
# These are apt/apt-get only
|
# These are apt/apt-get only
|
||||||
alias ags="$APT source" # asrc
|
alias ags="$APT source"
|
||||||
compdef _ags ags="$APT source"
|
|
||||||
|
|
||||||
alias acp='apt-cache policy' # app
|
alias acp='apt-cache policy'
|
||||||
compdef _acp acp='apt-cache policy'
|
|
||||||
|
|
||||||
#List all installed packages
|
#List all installed packages
|
||||||
alias agli='apt list --installed'
|
alias agli='apt list --installed'
|
||||||
compdef _agli agli='apt list --installed'
|
|
||||||
|
|
||||||
# superuser operations ######################################################
|
# superuser operations ######################################################
|
||||||
|
|
||||||
# List available updates only
|
# List available updates only
|
||||||
alias aglu='sudo apt-get -u upgrade --assume-no'
|
alias aglu='sudo apt-get -u upgrade --assume-no'
|
||||||
compdef _aglu aglu='sudo apt-get -u upgrade --assume-no'
|
|
||||||
|
|
||||||
alias afu='sudo apt-file update'
|
alias afu='sudo apt-file update'
|
||||||
compdef _afu afu='sudo apt-file update'
|
|
||||||
|
|
||||||
alias ppap='sudo ppa-purge'
|
alias ppap='sudo ppa-purge'
|
||||||
compdef _ppap ppap='sudo ppa-purge'
|
|
||||||
|
|
||||||
alias ag="sudo $APT" # age - but without sudo
|
alias ag="sudo $APT"
|
||||||
alias aga="sudo $APT autoclean" # aac
|
alias aga="sudo $APT autoclean"
|
||||||
alias agb="sudo $APT build-dep" # abd
|
alias agb="sudo $APT build-dep"
|
||||||
alias agc="sudo $APT clean" # adc
|
alias agc="sudo $APT clean"
|
||||||
alias agd="sudo $APT dselect-upgrade" # ads
|
alias agd="sudo $APT dselect-upgrade"
|
||||||
alias agi="sudo $APT install" # ai
|
alias agi="sudo $APT install"
|
||||||
alias agp="sudo $APT purge" # ap
|
alias agp="sudo $APT purge"
|
||||||
alias agr="sudo $APT remove" # ar
|
alias agr="sudo $APT remove"
|
||||||
alias agu="sudo $APT update" # ad
|
alias agu="sudo $APT update"
|
||||||
alias agud="sudo $APT update && sudo $APT dist-upgrade" #adu
|
alias agud="sudo $APT update && sudo $APT dist-upgrade"
|
||||||
alias agug="sudo $APT upgrade" # ag
|
alias agug="sudo $APT upgrade"
|
||||||
alias aguu="sudo $APT update && sudo $APT upgrade" #adg
|
alias aguu="sudo $APT update && sudo $APT upgrade"
|
||||||
alias agar="sudo $APT autoremove"
|
alias agar="sudo $APT autoremove"
|
||||||
|
|
||||||
compdef _ag ag="sudo $APT"
|
|
||||||
compdef _aga aga="sudo $APT autoclean"
|
|
||||||
compdef _agb agb="sudo $APT build-dep"
|
|
||||||
compdef _agc agc="sudo $APT clean"
|
|
||||||
compdef _agd agd="sudo $APT dselect-upgrade"
|
|
||||||
compdef _agi agi="sudo $APT install"
|
|
||||||
compdef _agp agp="sudo $APT purge"
|
|
||||||
compdef _agr agr="sudo $APT remove"
|
|
||||||
compdef _agu agu="sudo $APT update"
|
|
||||||
compdef _agud agud="sudo $APT update && sudo $APT dist-upgrade"
|
|
||||||
compdef _agug agug="sudo $APT upgrade"
|
|
||||||
compdef _aguu aguu="sudo $APT update && sudo $APT upgrade"
|
|
||||||
compdef _agar agar="sudo $APT autoremove"
|
|
||||||
|
|
||||||
# Remove ALL kernel images and headers EXCEPT the one in use
|
# Remove ALL kernel images and headers EXCEPT the one in use
|
||||||
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \
|
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'
|
||||||
?not(~n`uname -r`))'
|
|
||||||
|
|
||||||
# Misc. #####################################################################
|
# Misc. #####################################################################
|
||||||
# print all installed packages
|
# print all installed packages
|
||||||
|
@ -136,22 +103,22 @@ apt-history () {
|
||||||
|
|
||||||
# Kernel-package building shortcut
|
# Kernel-package building shortcut
|
||||||
kerndeb () {
|
kerndeb () {
|
||||||
# temporarily unset MAKEFLAGS ( '-j3' will fail )
|
# temporarily unset MAKEFLAGS ( '-j3' will fail )
|
||||||
MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
|
MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' )
|
||||||
print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
|
print '$MAKEFLAGS set to '"'$MAKEFLAGS'"
|
||||||
appendage='-custom' # this shows up in $ (uname -r )
|
appendage='-custom' # this shows up in $(uname -r)
|
||||||
revision=$(date +"%Y%m%d") # this shows up in the .deb file name
|
revision=$(date +"%Y%m%d") # this shows up in the .deb file name
|
||||||
|
|
||||||
make-kpkg clean
|
make-kpkg clean
|
||||||
|
|
||||||
time fakeroot make-kpkg --append-to-version "$appendage" --revision \
|
time fakeroot make-kpkg --append-to-version "$appendage" --revision \
|
||||||
"$revision" kernel_image kernel_headers
|
"$revision" kernel_image kernel_headers
|
||||||
}
|
}
|
||||||
|
|
||||||
# List packages by size
|
# List packages by size
|
||||||
function apt-list-packages {
|
function apt-list-packages {
|
||||||
dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
|
dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
|
||||||
grep -v deinstall | \
|
grep -v deinstall | \
|
||||||
sort -n | \
|
sort -n | \
|
||||||
awk '{print $1" "$2}'
|
awk '{print $1" "$2}'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue