mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-06-19 05:12:49 +02:00
Added the installer plugin
This plugin creates 2 aliases "in and up" that are system and distro agnostic. For example, on Mac in = brew install on SUSE in = sudo -E zypper install on Debian in = sudo -E apt-get install on RedHat in = sudo -E yum install add the 'installer' to your plugin list in ~/.zshrc source ~/.zshrc now you can run 'in wget' 'up curl'
This commit is contained in:
parent
825baeb310
commit
0605884fae
3 changed files with 123 additions and 0 deletions
15
plugins/installer/README.md
Normal file
15
plugins/installer/README.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
A simple aliasing scheme for the different kinds of systems
|
||||
that have command line app installers.
|
||||
|
||||
On Mac systems, it's assumed the installer is brew
|
||||
On Suse based sysetms, it's zypper
|
||||
On Redhat, it's yum
|
||||
On Debian/Ubuntu it's apt-get
|
||||
|
||||
include the installer as a plugin in your ~/.zshrc
|
||||
|
||||
to install a new app run
|
||||
install <app>
|
||||
|
||||
you can upgrade an app with
|
||||
upgrade <app>
|
||||
Loading…
Add table
Add a link
Reference in a new issue