Add tuxc for use in scripts

Former-commit-id: 399d3c5825764f1f4b4f867907e6d641e20375ec
This commit is contained in:
mollusk 2018-04-10 07:30:20 -07:00
parent d1def251a9
commit 7782ae69d2
12 changed files with 99 additions and 0 deletions

View 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"

View 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"

View File

@ -0,0 +1,9 @@
searchCommand = ""
syncCommand = ""
installCommand = ""
reinstallCommand = ""
removeCommand = ""
purgeCommand = ""
upgradeCommand = ""
cleanCommand=""
supCommand=""

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

View 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"

BIN
tuxc/tuxc Executable file

Binary file not shown.