# A kind of pkill/killall
KillAll() {
+ if [ -z "$1" -o -n "$3" ]; then
+ echo "Usage: KillAll [-signal] proc_regexp" >&2
+ return 1
+ fi
if [ -z "$2" ]; then
kill `pidOf "$1"`
else
if test -x /usr/bin/git >/dev/null 2>&1; then
# chdir to a remote's directory (if the remote is on the local FS)
cdremote() {
+ if [ -z "$1" -o -n "$2" ]; then
+ echo "Usage: cdremote remote_name" >&2
+ return 1
+ fi
cd "`git config --get remote.$1.url`"
}
# list remotes with URLs matching a regexp
_list_remotes() {
+ if [ -z "$1" -o -n "$2" ]; then
+ echo "Usage: _list_remotes remote_regexp" >&2
+ return 1
+ fi
GIT_REMOTES=""
local remote
for remote in `git remote`; do