1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00
rc/sh/pegg
Connor Olding d5f3f14d72 merge compatibility lines
RIP meaningful last-modified dates
2024-03-26 15:08:14 -07:00

21 lines
753 B
Bash
Executable File

#!/usr/bin/env sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
pegg() { ### @-
### download and (pip) install a Python "egg" from a project on GitHub,
### defaulting to the master branch. this uses [`pippy`](#pippy) internally.
###
### ```sh
### # install the development version of https://github.com/rthalley/dnspython
### $ pegg rthalley dnspython
### # or instead install the latest stable version (as of writing)
### $ pegg rthalley dnspython 3933b49
### ```
[ $# -ge 2 ] || { printf "%s\n" "$0: too few arguments" >&2; return 1; }
pippy "https://github.com/$1/$2/tarball/${3:-master}#egg=$2"
}
[ -n "${preload+-}" ] || . ~/sh/preload || exit 2
eval ${preload:-preload} pippy
[ -n "${preload+-}" ] || pegg "$@"