commands.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. as is currently: install, remove, update, upgrade and search commands are preliminarily coded for portage, paludis's cave, apt-get, slaptget, pacman, and zypper. (please pop into #witchlinux on irc.libera.chat to suggest others to add, or other ideas, fixes, etc.)
  2. ### the original jotting down of early notion:
  3. # rspm command : package manager used : command used
  4. rspm install : apt-get : apt-get install
  5. rspm update : apt-get : apt-get update
  6. ##^ i think i only scrawled that before going off n writing rspm.sh. see rspm.sh for the real meat. i've tried to keep the code as clear and just-enough as possible, though the idea below may require either a bit of muddying that clarity, and or a radical refactoring. ... not to mention the issues surrounding the nuances of each package manager.
  7. ### the simplification/shortification rethink:
  8. #install
  9. rspm install packagename
  10. rspm -i packagename
  11. rspm packagename
  12. #remove/uninstall
  13. rspm remove packagename
  14. rspm uninstall packagename #also echoes to use remove/-r
  15. rspm -r packagename
  16. rspmr packagename
  17. #sync/update (to refresh available packages list)
  18. rspm sync
  19. rspm update
  20. rspm -s
  21. rspms
  22. #update/upgrade (ups installed software to newest)
  23. rspm upgrade
  24. rspm -u
  25. rspmu
  26. #sync & upgrade
  27. rspmsu
  28. #search/find
  29. rspm search packagename
  30. rspm find packagename
  31. rspm -f packagename
  32. rspmf packagename