Add tuxc for use in scripts
Former-commit-id: 399d3c5825764f1f4b4f867907e6d641e20375ec
This commit is contained in:
parent
d1def251a9
commit
7782ae69d2
9
tuxc/package_managers/apt
Normal file
9
tuxc/package_managers/apt
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "apt search"
|
||||
syncCommand = "apt update"
|
||||
installCommand = "apt install"
|
||||
reinstallCommand = "apt install --reinstall"
|
||||
removeCommand = "apt remove"
|
||||
purgeCommand = "apt remove --purge"
|
||||
upgradeCommand = "apt upgrade"
|
||||
cleanCommand="apt-get autoclean"
|
||||
supCommand="apt update && apt upgrade"
|
9
tuxc/package_managers/brew
Normal file
9
tuxc/package_managers/brew
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "brew search"
|
||||
syncCommand = "brew update"
|
||||
installCommand = "brew install"
|
||||
reinstallCommand = "brew install"
|
||||
removeCommand = "brew remove"
|
||||
purgeCommand = "brew remove"
|
||||
upgradeCommand = "brew upgrade"
|
||||
cleanCommand="brew cleanup"
|
||||
supCommand="brew update && brew upgrade"
|
9
tuxc/package_managers/custom_template
Normal file
9
tuxc/package_managers/custom_template
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = ""
|
||||
syncCommand = ""
|
||||
installCommand = ""
|
||||
reinstallCommand = ""
|
||||
removeCommand = ""
|
||||
purgeCommand = ""
|
||||
upgradeCommand = ""
|
||||
cleanCommand=""
|
||||
supCommand=""
|
9
tuxc/package_managers/dnf
Normal file
9
tuxc/package_managers/dnf
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "dnf search"
|
||||
syncCommand = "dnf --refresh check-update"
|
||||
installCommand = "dnf install"
|
||||
reinstallCommand = "dnf reinstall"
|
||||
removeCommand = "dnf remove"
|
||||
purgeCommand = "dnf autoremove"
|
||||
upgradeCommand = "dnf upgrade"
|
||||
cleanCommand="dnf clean all"
|
||||
supCommand="dnf --refresh upgrade"
|
9
tuxc/package_managers/eopkg
Normal file
9
tuxc/package_managers/eopkg
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "eopkg sr"
|
||||
syncCommand = "eopkg ur"
|
||||
installCommand = "eopkg it"
|
||||
reinstallCommand = "echo 'This feature it not yet implemented'"
|
||||
removeCommand = "eopkg rm"
|
||||
purgeCommand = "eopkg rm --purge"
|
||||
upgradeCommand = "eopkg up"
|
||||
cleanCommand="eopkg dc"
|
||||
supCommand="eopkg up"
|
9
tuxc/package_managers/equo
Normal file
9
tuxc/package_managers/equo
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "equo s"
|
||||
syncCommand = "equo up"
|
||||
installCommand = "equo i"
|
||||
reinstallCommand = "equo i"
|
||||
removeCommand = "equo rm"
|
||||
purgeCommand = "equo remove --configfiles"
|
||||
upgradeCommand = "equo u"
|
||||
cleanCommand="equo cleanup"
|
||||
supCommand="equo up && equo u"
|
9
tuxc/package_managers/pacman
Normal file
9
tuxc/package_managers/pacman
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "pacman -Ss"
|
||||
syncCommand = "pacman -Sy"
|
||||
installCommand = "pacman -S"
|
||||
reinstallCommand = "pacman -S"
|
||||
removeCommand = "pacman -R"
|
||||
purgeCommand = "pacman -Rdd"
|
||||
upgradeCommand = "pacman -Su"
|
||||
cleanCommand="pacman -Rsn s(pacman -Qdtq)"
|
||||
supCommand="pacman -Syu"
|
9
tuxc/package_managers/pkgman
Normal file
9
tuxc/package_managers/pkgman
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "pkgman search"
|
||||
syncCommand = "pkgman full-sync"
|
||||
installCommand = "pkgman install"
|
||||
reinstallCommand = ""
|
||||
removeCommand = "pkgman uninstall"
|
||||
purgeCommand = ""
|
||||
upgradeCommand = "pkgman update"
|
||||
cleanCommand=""
|
||||
supCommand="pkgman update"
|
9
tuxc/package_managers/xbps-install
Normal file
9
tuxc/package_managers/xbps-install
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "xbps-query -Rs"
|
||||
syncCommand = "xbps-install -S"
|
||||
installCommand = "xbps-install"
|
||||
reinstallCommand = "xbps-install -f"
|
||||
removeCommand = "xbps-remove"
|
||||
purgeCommand = "xbps-remove -R"
|
||||
upgradeCommand = "xbps-install -Su"
|
||||
cleanCommand="xbps-remove -O"
|
||||
supCommand="xbps-install -Su"
|
9
tuxc/package_managers/yum
Normal file
9
tuxc/package_managers/yum
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "yum search"
|
||||
syncCommand = "yum check-update"
|
||||
installCommand = "yum install"
|
||||
reinstallCommand = "yum reinstall"
|
||||
removeCommand = "yum remove"
|
||||
purgeCommand = "yum remove"
|
||||
upgradeCommand = "yum update"
|
||||
cleanCommand="yum autoremove"
|
||||
supCommand="yum check-update && yum update"
|
9
tuxc/package_managers/zypper
Normal file
9
tuxc/package_managers/zypper
Normal file
@ -0,0 +1,9 @@
|
||||
searchCommand = "zypper search"
|
||||
syncCommand = "zypper refresh"
|
||||
installCommand = "zypper install"
|
||||
reinstallCommand = "zypper install -f"
|
||||
removeCommand = "zypper remove"
|
||||
purgeCommand = "zypper rm"
|
||||
upgradeCommand = "zypper update"
|
||||
cleanCommand="zypper clean"
|
||||
supCommand="zypper refresh && zypper update"
|
Loading…
x
Reference in New Issue
Block a user